From f82aada23b7ec1d64b96ae79282d73f53e548487 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Wed, 1 Sep 2021 13:15:31 +0200 Subject: [PATCH] web/admin: fix flow executor not opening in new tab Signed-off-by: Jens Langhammer --- web/src/pages/flows/FlowListPage.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/web/src/pages/flows/FlowListPage.ts b/web/src/pages/flows/FlowListPage.ts index 6096a0dcc..ba451bbba 100644 --- a/web/src/pages/flows/FlowListPage.ts +++ b/web/src/pages/flows/FlowListPage.ts @@ -101,9 +101,7 @@ export class FlowListPage extends TablePage { slug: item.slug, }) .then((link) => { - window.location.assign( - `${link.link}?next=/%23${window.location.href}`, - ); + window.open(`${link.link}?next=/%23${window.location.href}`); }); }} >