Commit a31d0df8 by Daniel Lee

shortcuts: fixes expand/collapse all rows

Fixes #9069
parent 7b501948
...@@ -180,14 +180,14 @@ export class KeybindingSrv { ...@@ -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;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment