mirror of
https://github.com/grafana/grafana.git
synced 2025-02-09 23:16:16 -06:00
Merge pull request #15850 from grafana/15849-autofitpanels-in-url
Don't add autofitpanels to the url if it already exists
This commit is contained in:
commit
56682cb1eb
@ -4,6 +4,7 @@ import _ from 'lodash';
|
||||
import coreModule from 'app/core/core_module';
|
||||
import appEvents from 'app/core/app_events';
|
||||
import { getExploreUrl } from 'app/core/utils/explore';
|
||||
import { store } from 'app/store/store';
|
||||
|
||||
import Mousetrap from 'mousetrap';
|
||||
import 'mousetrap-global-bind';
|
||||
@ -294,7 +295,9 @@ export class KeybindingSrv {
|
||||
//Autofit panels
|
||||
this.bind('d a', () => {
|
||||
// this has to be a full page reload
|
||||
window.location.href = window.location.href + '&autofitpanels';
|
||||
const queryParams = store.getState().location.query;
|
||||
const newUrlParam = queryParams.autofitpanels ? '' : '&autofitpanels';
|
||||
window.location.href = window.location.href + newUrlParam;
|
||||
});
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user