Commit e828f3a9 by bergquist

shortcuts: change init bind key to d

parent 5a30b08b
......@@ -188,14 +188,14 @@ export class KeybindingSrv {
});
// collapse all rows
this.bind('r C', () => {
this.bind('d C', () => {
_.each(dashboard.rows, function(row) {
row.collapse = true;
});
});
// expand all rows
this.bind('r E', () => {
this.bind('d E', () => {
_.each(dashboard.rows, function(row) {
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