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
92e912c0
Commit
92e912c0
authored
Apr 08, 2023
by
pythongosssss
Browse files
Fix multiple missing
parent
aad71add
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
web/scripts/app.js
web/scripts/app.js
+2
-2
No files found.
web/scripts/app.js
View file @
92e912c0
...
@@ -902,9 +902,9 @@ class ComfyApp {
...
@@ -902,9 +902,9 @@ class ComfyApp {
if
(
missingNodeTypes
.
length
)
{
if
(
missingNodeTypes
.
length
)
{
this
.
ui
.
dialog
.
show
(
this
.
ui
.
dialog
.
show
(
`When loading the graph, the following node types were not found: <ul>
${
missingNodeTypes
.
map
(
`When loading the graph, the following node types were not found: <ul>
${
Array
.
from
(
new
Set
(
missingNodeTypes
))
.
map
(
(
t
)
=>
`<li>
${
t
}
</li>`
(
t
)
=>
`<li>
${
t
}
</li>`
)}
</ul>Nodes that have failed to load will show as red on the graph.`
).
join
(
""
)}
</ul>Nodes that have failed to load will show as red on the graph.`
);
);
}
}
}
}
...
...
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