Use name from input to export single node template
This commit is contained in:
parent
6dbb18df92
commit
a555074737
|
@ -182,7 +182,7 @@ class ManageTemplates extends ComfyDialog {
|
|||
const url = URL.createObjectURL(blob);
|
||||
const a = $el("a", {
|
||||
href: url,
|
||||
download: t.name + ".json",
|
||||
download: (nameInput.value || t.name) + ".json",
|
||||
style: {display: "none"},
|
||||
parent: document.body,
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue