From 206c3a20fa320137b7c84d05ab5a952d7c363716 Mon Sep 17 00:00:00 2001 From: Bogdan Artemenko Date: Thu, 6 Jun 2019 18:40:17 +0300 Subject: [PATCH] Web/reload issue (#2139) --- web/satellite/src/router/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/satellite/src/router/index.ts b/web/satellite/src/router/index.ts index 80c840dc9..dd41d2a21 100644 --- a/web/satellite/src/router/index.ts +++ b/web/satellite/src/router/index.ts @@ -145,7 +145,7 @@ let router = new Router({ // and if we are able to navigate to page without existing project router.beforeEach((to, from, next) => { if (isUnavailablePageWithoutProject(to.name as string)) { - next(ROUTES.PROJECT_OVERVIEW + '/' + ROUTES.PROJECT_DETAILS); + next(ROUTES.PROJECT_OVERVIEW.path + '/' + ROUTES.PROJECT_DETAILS.path); return; }