diff --git a/web-plugin/index.js b/web-plugin/index.js index cadbc38..4f0503b 100644 --- a/web-plugin/index.js +++ b/web-plugin/index.js @@ -1,7 +1,7 @@ import { app } from "./app.js"; import { api } from "./api.js"; import { ComfyWidgets, LGraphNode } from "./widgets.js"; -import { generateDependencyGraph } from "https://esm.sh/comfyui-json@0.1.9"; +import { generateDependencyGraph } from "https://esm.sh/comfyui-json@0.1.14"; /** @typedef {import('../../../web/types/comfy.js').ComfyExtension} ComfyExtension*/ /** @type {ComfyExtension} */ @@ -184,12 +184,28 @@ function createDynamicUIHtml(data) { let html = '
These nodes are not found with any matching custom_nodes in the ComfyUI Manager Database
+ ${data.missing_nodes + .map((node) => { + return `${node}
`; + }) + .join("")} +