skip groupNode from node update

This commit is contained in:
anovazzi1 2023-09-20 23:22:17 -03:00
commit fbb6f0839a

View file

@ -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) {