From 60fdbb56a990a4d1fb19bafbe2d6110f0aadb8a1 Mon Sep 17 00:00:00 2001 From: hjlarry Date: Mon, 13 Oct 2025 16:38:50 +0800 Subject: [PATCH] fix all lines missing --- .../workflow/collaboration/core/collaboration-manager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/components/workflow/collaboration/core/collaboration-manager.ts b/web/app/components/workflow/collaboration/core/collaboration-manager.ts index d8a5b97e91..ce56d4f5c3 100644 --- a/web/app/components/workflow/collaboration/core/collaboration-manager.ts +++ b/web/app/components/workflow/collaboration/core/collaboration-manager.ts @@ -544,7 +544,7 @@ export class CollaborationManager { const oldNodesMap = new Map(oldNodes.map(node => [node.id, node])) const newNodesMap = new Map(newNodes.map(node => [node.id, node])) - const syncDataAllowList = new Set(['_children']) + const syncDataAllowList = new Set(['_children', '_connectedSourceHandleIds', '_connectedTargetHandleIds', '_targetBranches']) const shouldSyncDataKey = (key: string) => (syncDataAllowList.has(key) || !key.startsWith('_')) && key !== 'selected' // Delete removed nodes