Change output name for individual files

This commit is contained in:
Realmy 2024-11-12 19:15:54 +01:00
parent 3583784f2b
commit 17178bd2d2
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@
); );
const a = document.createElement("a"); const a = document.createElement("a");
a.href = blob; a.href = blob;
a.download = `${new Date().toISOString()}-vert-converted${ a.download = `VERT-Converted_${new Date().toISOString()}${
files.conversionTypes[0] files.conversionTypes[0]
}`; }`;
a.click(); a.click();