mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-06-09 07:37:14 +00:00
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 url = URL.createObjectURL(blob);
|
||||||
const a = $el("a", {
|
const a = $el("a", {
|
||||||
href: url,
|
href: url,
|
||||||
download: t.name + ".json",
|
download: (nameInput.value || t.name) + ".json",
|
||||||
style: {display: "none"},
|
style: {display: "none"},
|
||||||
parent: document.body,
|
parent: document.body,
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user