Commit 92e912c0 authored by pythongosssss's avatar pythongosssss
Browse files

Fix multiple missing

parent aad71add
...@@ -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.`
); );
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment