mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 08:05:43 -06:00
shortcuts: change init bind key to d
This commit is contained in:
parent
5a30b08b14
commit
e828f3a97b
@ -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;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user