wip: fix overriding evaluation execution mode with manual

This commit is contained in:
Eugene Molodkin 2025-01-09 13:31:43 +01:00
parent 8c397cd698
commit 66622d9b99
No known key found for this signature in database

View file

@ -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 ||