From dc40980debd5a1c23a06b5d79a526275b1bedc39 Mon Sep 17 00:00:00 2001 From: Romain Billard Date: Tue, 21 Apr 2026 14:47:18 +0200 Subject: [PATCH] fix(alerts): update alert edition condition --- .../page-alerting-edit-feature/page-alerting-edit-feature.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/pages/application/src/lib/feature/page-alerting-edit-feature/page-alerting-edit-feature.tsx b/libs/pages/application/src/lib/feature/page-alerting-edit-feature/page-alerting-edit-feature.tsx index 7a5809a6c1e..7018c78f49e 100644 --- a/libs/pages/application/src/lib/feature/page-alerting-edit-feature/page-alerting-edit-feature.tsx +++ b/libs/pages/application/src/lib/feature/page-alerting-edit-feature/page-alerting-edit-feature.tsx @@ -143,7 +143,7 @@ export function PageAlertingEditFeature() { .with('hpa_limit', () => 'Auto-scaling reached the maximum number of instances') .otherwise(() => generateConditionDescription(func, operator, threshold, unit, updatedAlert.for_duration)) - if (updatedAlert && environment && containerName && ingressName) { + if (updatedAlert && environment && containerName && (ingressName || httpRouteName)) { try { await editAlertRule({ alertRuleId: alertId,