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,