mirror of
https://github.com/grafana/grafana.git
synced 2025-02-12 00:25:46 -06:00
* Search: Use Card component for search items * Search: Set min height of search item * Search: Adjust item height * Search: Move tags to the right * Search: Center item content * Search: Align tags * Search: Adjust Card spacing * Search: Adjust dimensions
8 lines
320 B
TypeScript
8 lines
320 B
TypeScript
export const NO_ID_SECTIONS = ['Recent', 'Starred'];
|
|
// Height of the search result item
|
|
export const SEARCH_ITEM_HEIGHT = 62;
|
|
export const SEARCH_ITEM_MARGIN = 8;
|
|
export const DEFAULT_SORT = { label: 'A-Z', value: 'alpha-asc' };
|
|
export const SECTION_STORAGE_KEY = 'search.sections';
|
|
export const GENERAL_FOLDER_ID = 0;
|