Commit bbf9d767 by Daniel Lee

Merge branch 'v4.4.x'

parents 5c295802 a31d0df8
...@@ -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