mirror of
https://github.com/grafana/grafana.git
synced 2026-07-29 15:59:50 -05:00
Use url params for explore state
- putting state in the path components led to 400 on reload - use `/explore?state=JSON` instead
This commit is contained in:
@@ -191,7 +191,7 @@ export class KeybindingSrv {
|
||||
range,
|
||||
};
|
||||
const exploreState = encodePathComponent(JSON.stringify(state));
|
||||
this.$location.url(`/explore/${exploreState}`);
|
||||
this.$location.url(`/explore?state=${exploreState}`);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user