]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
mgr/dashboard: Fix virtual IP:port in NFS list 62861/head
authorAnkush Behl <cloudbehl@gmail.com>
Thu, 17 Apr 2025 12:58:43 +0000 (18:28 +0530)
committerAnkush Behl <cloudbehl@gmail.com>
Fri, 18 Apr 2025 06:10:31 +0000 (11:40 +0530)
fixes:https://tracker.ceph.com/issues/70964

Signed-off-by: Ankush Behl <cloudbehl@gmail.com>
src/pybind/mgr/dashboard/frontend/src/app/ceph/nfs/nfs-cluster/nfs-cluster.component.html

index 2a6bdb815dbda69bf1a2a326169c3eaf6791295e..bed22fb5628b17ff5544dfe28f7411af53d6ca74 100644 (file)
@@ -21,9 +21,9 @@
   #virtualIpTpl
   let-row="data.row"
   >
-  <span *ngIf="row.virtual_ip || row.ports">
+  <span *ngIf="row.virtual_ip || row.port">
   <cds-tag size="md">
-    {{ row.virtual_ip }}:{{row.ports}}
+    {{ row.virtual_ip }}:{{row.port}}
   </cds-tag>
   </span>
   </ng-template>