From a7b0d84bcbf1383ff2d113ea26ac62d4bb514545 Mon Sep 17 00:00:00 2001 From: SuZhou-Joe Date: Tue, 30 Jul 2024 01:33:43 +0800 Subject: [PATCH] feat: show anomoly detection in left navigation (#820) Signed-off-by: SuZhou-Joe (cherry picked from commit da356178f4d97876a813b406c42ff81ba771fbff) --- public/plugin.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/public/plugin.ts b/public/plugin.ts index 1931a225..00c211f0 100644 --- a/public/plugin.ts +++ b/public/plugin.ts @@ -112,7 +112,6 @@ export class AnomalyDetectionOpenSearchDashboardsPlugin title: 'Get started', order: 8040, category: DEFAULT_APP_CATEGORIES.detect, - workspaceAvailability: WorkspaceAvailability.outsideWorkspace, mount: async (params: AppMountParameters) => { const { renderApp } = await import('./anomaly_detection_app'); const [coreStart] = await core.getStartServices(); @@ -127,7 +126,6 @@ export class AnomalyDetectionOpenSearchDashboardsPlugin title: 'Dashboard', order: 8040, category: DEFAULT_APP_CATEGORIES.detect, - workspaceAvailability: WorkspaceAvailability.outsideWorkspace, mount: async (params: AppMountParameters) => { const { renderApp } = await import('./anomaly_detection_app'); const [coreStart] = await core.getStartServices(); @@ -142,7 +140,6 @@ export class AnomalyDetectionOpenSearchDashboardsPlugin title: 'Detectors', order: 8040, category: DEFAULT_APP_CATEGORIES.detect, - workspaceAvailability: WorkspaceAvailability.outsideWorkspace, mount: async (params: AppMountParameters) => { const { renderApp } = await import('./anomaly_detection_app'); const [coreStart] = await core.getStartServices();