From 8698229b8fd9e151a14a58a1b025093b2df63be1 Mon Sep 17 00:00:00 2001 From: kodi Date: Wed, 18 Feb 2026 11:37:21 +0100 Subject: [PATCH] feat(containers-dashboard): voeg host_ip toe aan gepubliceerde poorten en corrigeer portweergave --- webui/html/index.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/webui/html/index.html b/webui/html/index.html index c0276b4..ab2efb5 100644 --- a/webui/html/index.html +++ b/webui/html/index.html @@ -635,9 +635,8 @@ const podName = c.PodName || '-'; const image = c.Image || c.image || ''; const managed = c._dashboard_source || 'podman'; - const ports = (c.Ports || []).map(p => - `${p.host_port}:${p.container_port}` - ).join(", "); + const ports = (c._dashboard_published_ports || []).join(", ") + || (c.Ports || []).map(p => `${p.host_port}:${p.container_port}`).join(", "); return ` ${esc(name)}