mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* CommandPalette: Search for dashboards using API * Fix ordering of dashboards * Put recent + search dashboards in root list, refactor actions into hook * limit recent dashboards to 5 * search debounce to 200ms * update priorities * extract i18n
5 lines
251 B
TypeScript
5 lines
251 B
TypeScript
export const RECENT_DASHBOARDS_PRORITY = 4;
|
|
export const DEFAULT_PRIORITY = 3;
|
|
export const PREFERENCES_PRIORITY = 2;
|
|
export const SEARCH_RESULTS_PRORITY = 1; // Dynamic actions should be below static ones so the list doesn't 'jump' when they come in
|