mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Merge branch 'v4.4.x'
This commit is contained in:
commit
bbf9d7677b
@ -180,14 +180,14 @@ export class KeybindingSrv {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// collapse all rows
|
// collapse all rows
|
||||||
this.bind('d C', () => {
|
this.bind('d shift+c', () => {
|
||||||
for (let row of dashboard.rows) {
|
for (let row of dashboard.rows) {
|
||||||
row.collapse = true;
|
row.collapse = true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// expand all rows
|
// expand all rows
|
||||||
this.bind('d E', () => {
|
this.bind('d shift+e', () => {
|
||||||
for (let row of dashboard.rows) {
|
for (let row of dashboard.rows) {
|
||||||
row.collapse = false;
|
row.collapse = false;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user