]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/dashboard: fix missing checkbox icon in table 65568/head
authorNizamudeen A <nia@redhat.com>
Wed, 17 Sep 2025 13:07:06 +0000 (18:37 +0530)
committerNizamudeen A <nia@redhat.com>
Thu, 30 Oct 2025 06:21:38 +0000 (11:51 +0530)
Fixes: https://tracker.ceph.com/issues/72961
Signed-off-by: Nizamudeen A <nia@redhat.com>
src/pybind/mgr/dashboard/frontend/src/app/shared/datatable/table/table.component.html

index 044f586aa754cb29f1b538b1f3f5a1607fd595d7..361340b37a7db99faa6af425ed848fc519a825af 100644 (file)
 
 <ng-template #checkIconTpl
              let-value="data.value">
-  <i [ngClass]="[icons.check]"
-     [hidden]="!(value | boolean)"></i>
+@if (value | boolean) {
+  <cd-icon type="check"></cd-icon>
+}
 </ng-template>
 
 <ng-template #perSecondTpl