Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
CloWM UI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computational Metagenomics
CloWM
CloWM UI
Commits
0b1ce28b
Commit
0b1ce28b
authored
1 year ago
by
Daniel Göbel
Browse files
Options
Downloads
Plain Diff
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
Branches containing commit
No related tags found
2 merge requests
!84
Remove development branch
,
!64
Resolve "Fix wrong API call when deleting a workflow execution"
Pipeline
#38216
passed
1 year ago
Stage: test
Stage: build
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/stores/workflowExecutions.ts
+1
-1
1 addition, 1 deletion
src/stores/workflowExecutions.ts
src/views/workflows/ListWorkflowExecutionsView.vue
+2
-2
2 additions, 2 deletions
src/views/workflows/ListWorkflowExecutionsView.vue
with
3 additions
and
3 deletions
src/stores/workflowExecutions.ts
+
1
−
1
View file @
0b1ce28b
...
...
@@ -60,7 +60,7 @@ export const useWorkflowExecutionStore = defineStore({
.
finally
(
onFinally
);
},
deleteExecution
(
executionId
:
string
):
Promise
<
void
>
{
return
WorkflowExecutionService
.
workflowExecution
Cancel
WorkflowExecution
(
return
WorkflowExecutionService
.
workflowExecution
Delete
WorkflowExecution
(
executionId
,
).
then
(()
=>
{
delete
this
.
executionMapping
[
executionId
];
...
...
This diff is collapsed.
Click to expand it.
src/views/workflows/ListWorkflowExecutionsView.vue
+
2
−
2
View file @
0b1ce28b
...
...
@@ -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
"
)}
`
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment