From e972b86dc06bb2f5af8965ee847f423e61c3f13a Mon Sep 17 00:00:00 2001 From: chodeus Date: Wed, 15 Jul 2026 15:15:44 +0800 Subject: [PATCH] fix: restore the orphan image row's Created date to the Uptime column The orphan image row emits 1 + colspan=6 + 1 = 8 cells against a 10-column thead, so "Created" lands under "CPU & Memory load" and the Autostart and Uptime columns get no cell at all. colspan='6' was correct when the thead had 8 columns. Splitting Port Mappings into Container IP / Container Port / LAN IP:Port took it to 10 without bumping the colspan. Widening to 8 restores the row to a full 10 slots, matching the pre-split shape where the colspan also covered through Autostart. --- .../plugins/dynamix.docker.manager/include/DockerContainers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emhttp/plugins/dynamix.docker.manager/include/DockerContainers.php b/emhttp/plugins/dynamix.docker.manager/include/DockerContainers.php index ca2d0918dc..daa5ec18be 100644 --- a/emhttp/plugins/dynamix.docker.manager/include/DockerContainers.php +++ b/emhttp/plugins/dynamix.docker.manager/include/DockerContainers.php @@ -305,7 +305,7 @@ function my_lang_log($text) { $menu = sprintf("onclick=\"addDockerImageContext('%s','%s')\"", $id, implode(',',$image['Tags'])); echo ""; echo "("._('orphan image').")
"._('stopped')."
"; - echo ""._('Image ID').": $id
"; + echo ""._('Image ID').": $id
"; echo implode(', ',$image['Tags']); echo ""._('Created')." ".htmlspecialchars(_($image['Created'],0)).""; }