From fbb6f0839a1693692beac94d1e25ba0d7c03ae6b Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Wed, 20 Sep 2023 23:22:17 -0300 Subject: [PATCH] skip groupNode from node update --- src/frontend/src/contexts/tabsContext.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/contexts/tabsContext.tsx b/src/frontend/src/contexts/tabsContext.tsx index 42b15e844..196a24707 100644 --- a/src/frontend/src/contexts/tabsContext.tsx +++ b/src/frontend/src/contexts/tabsContext.tsx @@ -555,6 +555,7 @@ export function TabsProvider({ children }: { children: ReactNode }) { const updateNodes = (nodes: Node[], edges: Edge[]) => { nodes.forEach((node) => { + if (node.data.node?.flow) return; if (skipNodeUpdate.includes(node.data.type)) return; const template = templates[node.data.type]; if (!template) {