fix(editor): Fix workflow executions list page redirection (#10981)

This commit is contained in:
Csaba Tuncsik
2024-09-27 11:09:20 +02:00
committed by GitHub
parent 819d20fa2e
commit fe7d060568
2 changed files with 30 additions and 1 deletions

View File

@@ -113,7 +113,7 @@ function onDocumentVisibilityChange() {
async function initializeRoute() {
if (route.name === VIEWS.EXECUTION_HOME && executions.value.length > 0 && workflow.value) {
await router
.push({
.replace({
name: VIEWS.EXECUTION_PREVIEW,
params: { name: workflow.value.id, executionId: executions.value[0].id },
})