mirror of https://github.com/VERT-sh/VERT.git
Improved zip file name
This commit is contained in:
parent
23abe3efc7
commit
9e07443148
|
@ -137,7 +137,7 @@
|
|||
const url = URL.createObjectURL(blob);
|
||||
const a = document.createElement("a");
|
||||
a.href = url;
|
||||
a.download = `${new Date().toISOString()}-vert-converted.zip`;
|
||||
a.download = `VERT-Converted_${new Date().toISOString()}.zip`;
|
||||
a.click();
|
||||
URL.revokeObjectURL(url);
|
||||
a.remove();
|
||||
|
|
Loading…
Reference in New Issue