Explorar el Código

Merge branch 'v4.4.x'

Daniel Lee hace 8 años
padre
commit
bbf9d7677b
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      public/app/core/services/keybindingSrv.ts

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

@@ -180,14 +180,14 @@ export class KeybindingSrv {
     });
 
     // collapse all rows
-    this.bind('d C', () => {
+    this.bind('d shift+c', () => {
       for (let row of dashboard.rows) {
         row.collapse = true;
       }
     });
 
     // expand all rows
-    this.bind('d E', () => {
+    this.bind('d shift+e', () => {
       for (let row of dashboard.rows) {
         row.collapse = false;
       }