Skip to content

Commit f696384

Browse files
committed
mgr/dashboard: Fix virtual IP:port in NFS list
fixes:https://tracker.ceph.com/issues/70964 Signed-off-by: Ankush Behl <[email protected]>
1 parent 1e29203 commit f696384

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pybind/mgr/dashboard/frontend/src/app/ceph/nfs/nfs-cluster/nfs-cluster.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
#virtualIpTpl
2222
let-row="data.row"
2323
>
24-
<span *ngIf="row.virtual_ip || row.ports">
24+
<span *ngIf="row.virtual_ip || row.port">
2525
<cds-tag size="md">
26-
{{ row.virtual_ip }}:{{row.ports}}
26+
{{ row.virtual_ip }}:{{row.port}}
2727
</cds-tag>
2828
</span>
2929
</ng-template>

0 commit comments

Comments
 (0)