Skip to content

Commit bc4ad1f

Browse files
committed
mgr/dashboard: fix missing checkbox icon in table
Fixes: https://tracker.ceph.com/issues/72961 Signed-off-by: Nizamudeen A <[email protected]>
1 parent 986f61c commit bc4ad1f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,9 @@
302302

303303
<ng-template #checkIconTpl
304304
let-value="data.value">
305-
<i [ngClass]="[icons.check]"
306-
[hidden]="!(value | boolean)"></i>
305+
@if (value | boolean) {
306+
<cd-icon type="check"></cd-icon>
307+
}
307308
</ng-template>
308309

309310
<ng-template #perSecondTpl

0 commit comments

Comments
 (0)