Skip to content
Snippets Groups Projects
Commit 0b1ce28b authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Merge branch 'bugfix/69-fix-wrong-api-call-when-deleting-a-workflow-execution' into 'development'

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

Closes #69

See merge request !64
parents e1f6c1f9 1167ae1f
No related branches found
No related tags found
2 merge requests!84Remove development branch,!64Resolve "Fix wrong API call when deleting a workflow execution"
Pipeline #38216 passed
......@@ -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];
......
......@@ -63,11 +63,11 @@ const deleteModalString = computed<string>(() => {
return `Workflow Execution ${
workflowRepository.workflowMapping[
executionsState.executionToDelete.workflow_id
]
].name
}@${
workflowRepository.versionMapping[
executionsState.executionToDelete.workflow_version_id
]
].version
} from ${dayjs
.unix(executionsState.executionToDelete.start_time)
.format("DD.MM.YYYY HH:mm")}`;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment