From baa4acaf79529eb3252c13e2f85d20e34adab576 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Sun, 4 Sep 2022 00:19:36 +0530 Subject: [PATCH] Use - instead of : in filename --- ui/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/index.html b/ui/index.html index 8351f0be..4aa152e5 100644 --- a/ui/index.html +++ b/ui/index.html @@ -739,7 +739,7 @@ function createFileName() { const guidance = guidanceScaleField.value; // name and the top level metadata - let fileName = `sd_${underscoreName}_Seed:${seed}_Steps:${steps}_Guidance:${guidance}`; + let fileName = `sd_${underscoreName}_Seed-${seed}_Steps-${steps}_Guidance-${guidance}`; // add the tags let tags = []; @@ -750,7 +750,7 @@ function createFileName() { // join the tags with a pipe if (tags.length > 0) { - tagString = '_Tags:'; + tagString = '_Tags-'; tagString += tags.join('|'); }