adds charts panel
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
import type { RouteLocationRaw } from 'vue-router';
|
||||
|
||||
export enum PanelHeirarchyType {
|
||||
LEAF,
|
||||
FOLDER,
|
||||
LEAF = 'leaf',
|
||||
FOLDER = 'folder',
|
||||
}
|
||||
|
||||
export type PanelHeirarchyLeaf = {
|
||||
@@ -37,6 +37,12 @@ export function getPanelHeirarchy(): PanelHeirarchyChildren {
|
||||
type: PanelHeirarchyType.LEAF,
|
||||
});
|
||||
|
||||
result.push({
|
||||
name: 'Chart',
|
||||
to: { name: 'chart' },
|
||||
type: PanelHeirarchyType.LEAF,
|
||||
});
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user