From e54d9c4b075c91372c60c9d1ab8a88909f6f0f5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?NaYeong=2CKim=28=EA=B9=80=EB=82=98=EC=98=81=29?= Date: Mon, 14 Apr 2025 09:35:34 +0900 Subject: [PATCH] chore: add missed menu Signed-off-by: NaYeong,Kim --- apps/web/src/services/asset-inventory/configurator.ts | 2 ++ apps/web/src/services/cost-explorer/configurator.ts | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/web/src/services/asset-inventory/configurator.ts b/apps/web/src/services/asset-inventory/configurator.ts index 6f7dc7a969..5ccf95e1df 100644 --- a/apps/web/src/services/asset-inventory/configurator.ts +++ b/apps/web/src/services/asset-inventory/configurator.ts @@ -46,6 +46,7 @@ class AssetInventoryConfigurator implements FeatureConfiguratorType { { id: MENU_ID.CLOUD_SERVICE, needPermissionByRole: true }, { id: MENU_ID.SERVER, needPermissionByRole: true }, { id: MENU_ID.SECURITY, needPermissionByRole: true }, + { id: MENU_ID.METRIC_EXPLORER, needPermissionByRole: true }, { id: MENU_ID.COLLECTOR, needPermissionByRole: true }, ], }, @@ -55,6 +56,7 @@ class AssetInventoryConfigurator implements FeatureConfiguratorType { { id: MENU_ID.CLOUD_SERVICE }, { id: MENU_ID.SERVER }, { id: MENU_ID.SECURITY }, + { id: MENU_ID.METRIC_EXPLORER }, { id: MENU_ID.COLLECTOR }, ], }, diff --git a/apps/web/src/services/cost-explorer/configurator.ts b/apps/web/src/services/cost-explorer/configurator.ts index 25fddf6b6f..f889d2a5a8 100644 --- a/apps/web/src/services/cost-explorer/configurator.ts +++ b/apps/web/src/services/cost-explorer/configurator.ts @@ -52,10 +52,10 @@ class CostExplorerConfigurator implements FeatureConfiguratorType { ...baseMenu, subMenuList: [ { id: MENU_ID.COST_ANALYSIS }, - { id: MENU_ID.COST_ADVANCED_SETTINGS }, { id: MENU_ID.BUDGET }, { id: MENU_ID.COST_REPORT }, { id: MENU_ID.DATA_SOURCES }, + { id: MENU_ID.COST_ADVANCED_SETTINGS }, ], }, version: this.version,