Commit 545b72da by Łukasz Szczęsny Committed by Torkel Ödegaard

BridgeSrv: do not strip base from `state.location.url` (#20161)

parent 84771049
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment