shortcuts: change init bind key to d

This commit is contained in:
bergquist 2017-02-22 10:32:30 +01:00
parent 5a30b08b14
commit e828f3a97b

View File

@ -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;
});