mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
shortcuts: change init bind key to d
This commit is contained in:
parent
5a30b08b14
commit
e828f3a97b
@ -188,14 +188,14 @@ export class KeybindingSrv {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// collapse all rows
|
// collapse all rows
|
||||||
this.bind('r C', () => {
|
this.bind('d C', () => {
|
||||||
_.each(dashboard.rows, function(row) {
|
_.each(dashboard.rows, function(row) {
|
||||||
row.collapse = true;
|
row.collapse = true;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
// expand all rows
|
// expand all rows
|
||||||
this.bind('r E', () => {
|
this.bind('d E', () => {
|
||||||
_.each(dashboard.rows, function(row) {
|
_.each(dashboard.rows, function(row) {
|
||||||
row.collapse = false;
|
row.collapse = false;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user