skip groupNode from node update

This commit is contained in:
anovazzi1 2023-09-20 23:19:53 -03:00
commit 7bc3f9ed30

View file

@ -198,6 +198,7 @@ export function TabsProvider({ children }: { children: ReactNode }) {
function processFlowNodes(flow: FlowType) {
if (!flow.data || !flow.data.nodes) return;
flow.data.nodes.forEach((node: NodeType) => {
if (node.data.node?.flow) return;
if (skipNodeUpdate.includes(node.data.type)) return;
const template = templates[node.data.type];
if (!template) {