mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	shortcuts: change init bind key to d
This commit is contained in:
		| @@ -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; | ||||
|       }); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user