From 7620d93eda525c528823c20e83883ad10020bd76 Mon Sep 17 00:00:00 2001 From: Mutasem Aldmour <4711238+mutdmour@users.noreply.github.com> Date: Fri, 28 Oct 2022 12:16:43 +0200 Subject: [PATCH] fix(editor): redirect old path /workflow (#4469) --- packages/editor-ui/src/router.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/editor-ui/src/router.ts b/packages/editor-ui/src/router.ts index 59e46041f2..9ae53826ed 100644 --- a/packages/editor-ui/src/router.ts +++ b/packages/editor-ui/src/router.ts @@ -194,6 +194,10 @@ const router = new Router({ }, }, }, + { + path: '/workflow', + redirect: '/workflow/new', + }, { path: '/workflows', name: VIEWS.WORKFLOWS,