Skip to content
Snippets Groups Projects

Resolve "Fix wrong API call when deleting a workflow execution"

2 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -60,7 +60,7 @@ export const useWorkflowExecutionStore = defineStore({
.finally(onFinally);
},
deleteExecution(executionId: string): Promise<void> {
return WorkflowExecutionService.workflowExecutionCancelWorkflowExecution(
return WorkflowExecutionService.workflowExecutionDeleteWorkflowExecution(
executionId,
).then(() => {
delete this.executionMapping[executionId];
Loading