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)}