From e470d9b7bf3c057d944d1f110cd0f78ba5df82a0 Mon Sep 17 00:00:00 2001 From: Csaba Tuncsik Date: Thu, 4 Apr 2024 10:25:27 +0200 Subject: [PATCH] fix(editor): Fix saveManualExecutions reference in pushConnection mixin --- 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 d076923dd6036..f92dfc10fafad 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