mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
BridgeSrv: do not strip base from state.location.url
(#20161)
This commit is contained in:
committed by
Torkel Ödegaard
parent
8477104925
commit
545b72da33
@@ -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);
|
||||
|
Reference in New Issue
Block a user