mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 21:07:28 -08:00
wip: fix overriding evaluation execution mode with manual
This commit is contained in:
parent
8c397cd698
commit
66622d9b99
|
@ -71,7 +71,11 @@ export class ManualExecutionService {
|
|||
},
|
||||
};
|
||||
|
||||
const workflowExecute = new WorkflowExecute(additionalData, 'manual', executionData);
|
||||
const workflowExecute = new WorkflowExecute(
|
||||
additionalData,
|
||||
data.executionMode,
|
||||
executionData,
|
||||
);
|
||||
return workflowExecute.processRunExecutionData(workflow);
|
||||
} else if (
|
||||
data.runData === undefined ||
|
||||
|
|
Loading…
Reference in a new issue