Unverified Commit 5b873694 authored by DLohn's avatar DLohn Committed by GitHub
Browse files

Load titles from API format JSON (#3563)

parent efa5a711
......@@ -2238,6 +2238,7 @@ export class ComfyApp {
const data = apiData[id];
const node = LiteGraph.createNode(data.class_type);
node.id = isNaN(+id) ? id : +id;
node.title = data._meta?.title ?? node.title
graph.add(node);
}
......
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