Skip to content

Commit 6ee90df

Browse files
author
Abhishek Desai
committed
mgr/dashboard : Fixed warning icon colour issue with carbon colour
fixes : https://tracker.ceph.com/issues/73769 Signed-off-by: Abhishek Desai <[email protected]>
1 parent afa88a4 commit 6ee90df

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation/navigation.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -180,11 +180,11 @@
180180
class="tc_submenuitem tc_submenuitem_block_mirroring">
181181
<span i18n>Mirroring
182182
<cds-tag *ngIf="summaryData?.rbd_mirroring?.warnings !== 0"
183-
class="tag-warning">
183+
class="tag-warning content-theme">
184184
{{ summaryData?.rbd_mirroring?.warnings }}
185185
</cds-tag>
186186
<cds-tag *ngIf="summaryData?.rbd_mirroring?.errors !== 0"
187-
class="tag-danger">
187+
class="tag-danger content-theme">
188188
{{ summaryData?.rbd_mirroring?.errors }}
189189
</cds-tag>
190190
</span>
@@ -306,9 +306,9 @@
306306
<span i18n>
307307
<ng-container>Alerts</ng-container>
308308
<cds-tag *ngIf="prometheusAlertService.activeCriticalAlerts > 0"
309-
class="tag-danger ms-1">{{ prometheusAlertService.activeCriticalAlerts }}</cds-tag>
309+
class="tag-danger ms-1 content-theme">{{ prometheusAlertService.activeCriticalAlerts }}</cds-tag>
310310
<cds-tag *ngIf="prometheusAlertService.activeWarningAlerts > 0"
311-
class="tag-warning ms-1">{{ prometheusAlertService.activeWarningAlerts }}</cds-tag>
311+
class="tag-warning ms-1 content-theme">{{ prometheusAlertService.activeWarningAlerts }}</cds-tag>
312312
</span>
313313
</cds-sidenav-item>
314314
</cds-sidenav-menu>

0 commit comments

Comments
 (0)