1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-04 07:52:46 +08:00

Fix multiple missing

This commit is contained in:
pythongosssss
2023-04-08 16:55:09 +01:00
parent aad71add69
commit 92e912c065

View File

@@ -902,9 +902,9 @@ class ComfyApp {
if (missingNodeTypes.length) {
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>`
)}</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.`
);
}
}