mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-04-02 03:59:00 +02:00
Use - instead of : in filename
This commit is contained in:
parent
3c6bb41939
commit
baa4acaf79
@ -739,7 +739,7 @@ function createFileName() {
|
|||||||
const guidance = guidanceScaleField.value;
|
const guidance = guidanceScaleField.value;
|
||||||
|
|
||||||
// name and the top level metadata
|
// 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
|
// add the tags
|
||||||
let tags = [];
|
let tags = [];
|
||||||
@ -750,7 +750,7 @@ function createFileName() {
|
|||||||
|
|
||||||
// join the tags with a pipe
|
// join the tags with a pipe
|
||||||
if (tags.length > 0) {
|
if (tags.length > 0) {
|
||||||
tagString = '_Tags:';
|
tagString = '_Tags-';
|
||||||
tagString += tags.join('|');
|
tagString += tags.join('|');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user