Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
a5550747
"docs/source/api/schedulers/ddim.mdx" did not exist on "2fb8fafa4b761f6fc144cf75a6f6f0ea6af3a1c1"
Commit
a5550747
authored
Oct 17, 2023
by
Jairo Correa
Browse files
Use name from input to export single node template
parent
6dbb18df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
web/extensions/core/nodeTemplates.js
web/extensions/core/nodeTemplates.js
+1
-1
No files found.
web/extensions/core/nodeTemplates.js
View file @
a5550747
...
@@ -182,7 +182,7 @@ class ManageTemplates extends ComfyDialog {
...
@@ -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
,
});
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment