Improved zip file name

This commit is contained in:
Realmy 2024-11-12 12:46:15 +01:00
parent 23abe3efc7
commit 9e07443148
1 changed files with 1 additions and 1 deletions

View File

@ -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();