fix: restore third-party extension loading and panel wiring

This commit is contained in:
Youzini-afk
2026-03-23 23:14:21 +08:00
parent 7799f5ae81
commit e747d66478
5 changed files with 560 additions and 347 deletions

View File

@@ -90,15 +90,6 @@ export function addNode(graph, node) {
return node;
}
/**
* 获取所有活跃(未归档)节点
* @param {GraphState} graph
* @returns {Array}
*/
export function getActiveNodes(graph) {
return graph.nodes.filter((n) => !n.archived);
}
/**
* 根据 ID 获取节点
* @param {GraphState} graph