Merge branch 'v4.4.x'

This commit is contained in:
Daniel Lee 2017-08-21 21:05:43 +02:00
commit bbf9d7677b

View File

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