From b5ab8c5d20951059d83f25bc3379133d7d622f4f Mon Sep 17 00:00:00 2001 From: Afreen Misbah Date: Tue, 19 May 2026 05:56:05 +0530 Subject: [PATCH] mgr/dashboard: fix tag colors not applied in table cells Regression from 15ca5d7ab9c. Changed class to ngClass due to same attribute linter error. This caused color classes to be overwritten by carbon classes. Fixes: https://tracker.ceph.com/issues/76685 Signed-off-by: Afreen Misbah Assisted-by: Claude --- .../src/app/shared/datatable/table/table.component.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.html b/src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.html index 81fa874c2426..57e400c29bf6 100644 --- a/src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.html +++ b/src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.html @@ -360,8 +360,7 @@ let-value="data.value"> {{(column?.customTemplateConfig?.map && column?.customTemplateConfig?.map[item]?.value) ? column.customTemplateConfig.map[item].value : column?.customTemplateConfig?.prefix ? column.customTemplateConfig.prefix + item : item }} -- 2.47.3