From bdc13355df72614a820175e4b8735144af17a08b Mon Sep 17 00:00:00 2001 From: Peter Olu Date: Thu, 21 Apr 2022 18:06:42 +0100 Subject: [PATCH] added new route constant --- src/constants/data.ts | 1 + src/types/components.d.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/constants/data.ts b/src/constants/data.ts index 4aa4f82a..16e1aa72 100644 --- a/src/constants/data.ts +++ b/src/constants/data.ts @@ -34,6 +34,7 @@ export const RoutesMap: { [key: string]: string } = { Linux: "OS_LINUX", SkyWalkingServer: "SO11Y_OAP", Satellite: "SO11Y_SATELLITE", + FullScroll: "SO11Y_SATELLITE", Functions: "FAAS", Browser: "BROWSER", KubernetesCluster: "K8S", diff --git a/src/types/components.d.ts b/src/types/components.d.ts index 3aa380ba..da5d949d 100644 --- a/src/types/components.d.ts +++ b/src/types/components.d.ts @@ -33,6 +33,7 @@ declare module '@vue/runtime-core' { ElTable: typeof import('element-plus/es')['ElTable'] ElTableColumn: typeof import('element-plus/es')['ElTableColumn'] ElTooltip: typeof import('element-plus/es')['ElTooltip'] + FullVue: typeof import('./../components/FullVue.vue')['default'] Graph: typeof import('./../components/Graph.vue')['default'] Icon: typeof import('./../components/Icon.vue')['default'] Loading: typeof import('element-plus/es')['ElLoadingDirective']