From db4f8d49a3a87c4e893bb1496b0bc74bd804de64 Mon Sep 17 00:00:00 2001 From: Csaba Tuncsik Date: Thu, 4 Apr 2024 12:33:29 +0200 Subject: [PATCH] fix(editor): Fix execution with wait node (#9051) --- packages/editor-ui/src/mixins/pushConnection.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/editor-ui/src/mixins/pushConnection.ts b/packages/editor-ui/src/mixins/pushConnection.ts index d076923dd6..f92dfc10fa 100644 --- a/packages/editor-ui/src/mixins/pushConnection.ts +++ b/packages/editor-ui/src/mixins/pushConnection.ts @@ -319,7 +319,7 @@ export const pushConnection = defineComponent({ const workflow = this.workflowHelpers.getCurrentWorkflow(); if (runDataExecuted.waitTill !== undefined) { const workflowSettings = this.workflowsStore.workflowSettings; - const saveManualExecutions = this.rootStore.saveManualExecutions; + const saveManualExecutions = this.settingsStore.saveManualExecutions; const isSavingExecutions = workflowSettings.saveManualExecutions === undefined