From b9d02d1a94b317fc214499d9d95a844769faeea6 Mon Sep 17 00:00:00 2001 From: Abhishek Desai Date: Mon, 10 Nov 2025 11:40:34 +0530 Subject: [PATCH] mgr/dashboard : Fixed warning icon colour issue with carbon colour fixes : https://tracker.ceph.com/issues/73769 Signed-off-by: Abhishek Desai (cherry picked from commit 6ee90df0035d1ce501d17b1bc65e13d29b7b8835) Conflicts: src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.html --- .../navigation/navigation.component.html | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.html b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.html index efe234a49d29..71155da4cb49 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.html @@ -177,10 +177,14 @@ *ngIf="permissions.rbdMirroring.read && enabledFeature.mirroring" class="tc_submenuitem tc_submenuitem_block_mirroring"> Mirroring - {{ summaryData?.rbd_mirroring?.warnings }} - {{ summaryData?.rbd_mirroring?.errors }} + + {{ summaryData?.rbd_mirroring?.warnings }} + + + {{ summaryData?.rbd_mirroring?.errors }} + Alerts - {{ prometheusAlertService.activeCriticalAlerts }} - {{ prometheusAlertService.activeWarningAlerts }} + {{ prometheusAlertService.activeCriticalAlerts }} + {{ prometheusAlertService.activeWarningAlerts }} -- 2.47.3