Disable serialization of proxyWidgets

Also sorts the overlay property values
This commit is contained in:
Austin Mroz
2025-09-25 14:02:53 -05:00
parent f1c2d0ef6a
commit 040c6e1691

View File

@@ -103,17 +103,18 @@ function addProxyWidget(
nodeId,
widgetName,
graph: subgraphNode.subgraph,
name,
label: name,
isProxyWidget: true,
y: 0,
last_y: undefined,
width: undefined,
computedHeight: undefined,
afterQueued: undefined,
onRemove: undefined,
computedHeight: undefined,
isProxyWidget: true,
label: name,
last_y: undefined,
name,
node: subgraphNode,
promoted: undefined
onRemove: undefined,
promoted: undefined,
serialize: false,
width: undefined,
y: 0
}
return addProxyFromOverlay(subgraphNode, overlay)
}