mirror of
https://github.com/grafana/grafana.git
synced 2025-08-02 14:32:12 +08:00

* Add /children endpoint * Update folder client * Add comment * Add feature toggle * Add new version of useFoldersQuery * Error handling * Format * Rename feature toggle * Remove options and move root folder constant * Fix feature toggle merge * Add feature toggle again * Rename useFoldersQuery files * Update API spec * Fix test * Add test * Better typings --------- Co-authored-by: Clarity-89 <homes89@ukr.net>
10 lines
147 B
TypeScript
10 lines
147 B
TypeScript
export const ROOT_FOLDER_ITEM = {
|
|
isOpen: true,
|
|
level: 0,
|
|
item: {
|
|
kind: 'folder' as const,
|
|
title: 'Dashboards',
|
|
uid: '',
|
|
},
|
|
};
|