From 8d937b2a0d46591a0c3aa15b7f7f94001fca1e96 Mon Sep 17 00:00:00 2001 From: findthelorax Date: Fri, 8 May 2026 19:49:16 -0400 Subject: [PATCH] removed comma and allow multiple in a row --- frontend/src/components/panels/DetailPanel.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/components/panels/DetailPanel.tsx b/frontend/src/components/panels/DetailPanel.tsx index 16ec7ce..79b7d5d 100644 --- a/frontend/src/components/panels/DetailPanel.tsx +++ b/frontend/src/components/panels/DetailPanel.tsx @@ -233,20 +233,19 @@ export function DetailPanel({ onEdit }: DetailPanelProps) { {ipAddresses.length > 0 && (
{ipAddresses.length > 1 ? 'IP Addresses' : 'IP Address'} -
+
{ipAddresses.map((ip, index) => ( - + {ip} - {index < ipAddresses.length - 1 && ,} ))}