소스 검색

shortcuts: change init bind key to d

bergquist 8 년 전
부모
커밋
e828f3a97b
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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;
       });