From be5f4920c8f1bfadea6185659a8496f53c8e8082 Mon Sep 17 00:00:00 2001 From: Alex Grozav Date: Mon, 4 Dec 2023 15:40:10 +0200 Subject: [PATCH] fix: add missing workflow id from route --- .../src/components/ExecutionsView/ExecutionsList.vue | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue index 479e5f4201ada..3b6a08b1d74d0 100644 --- a/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsView/ExecutionsList.vue @@ -445,7 +445,14 @@ export default defineComponent({ }) .catch(() => {}); } else if (this.executions.length === 0) { - this.$router.push({ name: VIEWS.EXECUTION_HOME }).catch(() => {}); + this.$router + .push({ + name: VIEWS.EXECUTION_HOME, + params: { + name: this.currentWorkflow, + }, + }) + .catch(() => {}); this.workflowsStore.activeWorkflowExecution = null; } }