Skip to content

Commit 6282e42

Browse files
authored
Merge pull request ceph#65568 from rhcs-dashboard/table-check-fix
mgr/dashboard: fix missing checkbox icon in table Reviewed-by: Ankush Behl <[email protected]>
2 parents c16eeb4 + bc4ad1f commit 6282e42

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)