From 8b520dec488ab9ee32b42fc3bd75d37f0defc9f4 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 6 Nov 2025 10:31:42 +0100 Subject: [PATCH] portbindings: only show portCount when > 1 --- dashboard/src/components/PortBindings.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard/src/components/PortBindings.vue b/dashboard/src/components/PortBindings.vue index d82bc8af7..5735a5d05 100644 --- a/dashboard/src/components/PortBindings.vue +++ b/dashboard/src/components/PortBindings.vue @@ -14,7 +14,7 @@ const udpPorts = defineModel('udp');
- {{ port.description + '. ' + (port.portCount >=1 ? (port.portCount + ' ports. ') : '') }} + {{ port.description + '. ' + (port.portCount > 1 ? (port.portCount + ' ports. ') : '') }} {{ $t('appstore.installDialog.portReadOnly') }} Port already taken {{ port }}