From 735d2449693c54792244f9757ba73564af22c977 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: Thu, 26 Jun 2025 16:21:49 +0900 Subject: [PATCH] chore: variation will be added later Signed-off-by: NaYeong,Kim --- .../pages/admin/AdminAnomalyDetectionConfigurationPage.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/src/services/cost-explorer/pages/admin/AdminAnomalyDetectionConfigurationPage.vue b/apps/web/src/services/cost-explorer/pages/admin/AdminAnomalyDetectionConfigurationPage.vue index 9fb7ed768e..b8c15b9ba7 100644 --- a/apps/web/src/services/cost-explorer/pages/admin/AdminAnomalyDetectionConfigurationPage.vue +++ b/apps/web/src/services/cost-explorer/pages/admin/AdminAnomalyDetectionConfigurationPage.vue @@ -61,9 +61,9 @@ const state = reactive({ { label: 'Fixed Amount', name: 'FIXED_AMOUNT' }, ]), variationMenu: computed(() => [ - { label: 'All', name: 'all' }, + // { label: 'All', name: 'all' }, { label: 'Increase (>=)', name: JSON.stringify(['gte']) }, - { label: 'Decrease (<=)', name: JSON.stringify(['lte']) }, + // { label: 'Decrease (<=)', name: JSON.stringify(['lte']) }, ]), notifyLevelMenu: computed(() => Object.values(NOTIFY_LEVEL_MAP).map((level) => ({ label: level.label,