From 3fae5293e2d74399b09ebc4a1b3e160527c46dd5 Mon Sep 17 00:00:00 2001 From: boban Date: Sun, 5 Jul 2026 22:58:02 +0200 Subject: [PATCH] refactor(docker): drop the noisy port list from the container row The raw docker port column (e.g. "0.0.0.0:80->80/tcp, [::]:80->80/tcp, 9000/tcp, ...") made rows long and hard to scan for little day-to-day value. Show just the container name + image; the image already gives the useful "what is this" at a glance. Co-Authored-By: Claude Fable 5 --- resources/views/livewire/docker/index.blade.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/views/livewire/docker/index.blade.php b/resources/views/livewire/docker/index.blade.php index 3d1b202..d79dff9 100644 --- a/resources/views/livewire/docker/index.blade.php +++ b/resources/views/livewire/docker/index.blade.php @@ -92,7 +92,8 @@

{{ $c['name'] }}

-

{{ $c['image'] }}@if ($c['ports']) · {{ $c['ports'] }}@endif

+ {{-- Just the image — the raw port list is noisy and rarely useful at a glance. --}} +

{{ $c['image'] }}