Explorar o código

shortcuts: change init bind key to d

bergquist %!s(int64=8) %!d(string=hai) anos
pai
achega
e828f3a97b
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      public/app/core/services/keybindingSrv.ts

+ 2 - 2
public/app/core/services/keybindingSrv.ts

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