Merge branch 'perf/fix-fast-pan-memory' of github.com:Comfy-Org/ComfyUI_frontend into perf/fix-fast-pan-memory

This commit is contained in:
bymyself
2026-03-25 11:42:11 -07:00

View File

@@ -521,9 +521,7 @@ function instrumentNode(node: LGraphNode): NodeInstrumentation {
enumerable: true
})
const reactiveOutputs = shallowReactive<INodeOutputSlot[]>(
node.outputs ?? []
)
const reactiveOutputs = shallowReactive<INodeOutputSlot[]>(node.outputs ?? [])
Object.defineProperty(node, 'outputs', {
get() {
return reactiveOutputs