fix(editor): Stop telemetry from triggering when initializing workflow in new canvas (no-changelog) (#10492)

This commit is contained in:
Alex Grozav
2024-08-21 15:46:36 +03:00
committed by GitHub
parent d4012c7bf8
commit d5acde5ce4
2 changed files with 11 additions and 5 deletions

View File

@@ -809,7 +809,7 @@ async function onAddNodesAndConnections(
return;
}
await addNodes(nodes, { dragAndDrop, position, trackHistory: true });
await addNodes(nodes, { dragAndDrop, position, trackHistory: true, telemetry: true });
await nextTick();
const offsetIndex = editableWorkflow.value.nodes.length - nodes.length;