From 545b72da33d713a2073d3c91ceda525e2fbd219b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Szcz=C4=99sny?= Date: Thu, 26 Dec 2019 16:08:04 +0100 Subject: [PATCH] BridgeSrv: do not strip base from `state.location.url` (#20161) --- public/app/core/services/bridge_srv.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/core/services/bridge_srv.ts b/public/app/core/services/bridge_srv.ts index 88bcaadc6e7..20e6abe1b74 100644 --- a/public/app/core/services/bridge_srv.ts +++ b/public/app/core/services/bridge_srv.ts @@ -51,7 +51,7 @@ export class BridgeSrv { store.subscribe(() => { const state = store.getState(); const angularUrl = this.$location.url(); - const url = locationUtil.stripBaseFromUrl(state.location.url); + const url = state.location.url; if (angularUrl !== url) { this.$timeout(() => { this.$location.url(url);