From 1c29758ca27f10e1915371b8afd250dde9637f4c Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 28 May 2026 16:04:51 -0400 Subject: [PATCH] =?UTF-8?q?fix(tui):=20bump=20compact=20UPTIME=20column=20?= =?UTF-8?q?7=E2=86=928=20to=20fit=20100.0%=20with=20cell=20padding?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/tui/tab_sites.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/tui/tab_sites.go b/internal/tui/tab_sites.go index 04c2dbe..f9e5bd2 100644 --- a/internal/tui/tab_sites.go +++ b/internal/tui/tab_sites.go @@ -355,8 +355,8 @@ func (m Model) computeLayout() tableLayout { } else { // # NAME TYPE STATUS LAT UP% HISTORY SSL RT headers = []string{"#", "NAME", "TYPE", "STATUS", "LAT", "UP%", "HISTORY", "SSL", "RT"} - widths = []int{4, 0, 8, 8, 7, 7, 0, 5, 5} - fixed = 4 + 8 + 8 + 7 + 7 + 5 + 5 + widths = []int{4, 0, 8, 8, 7, 8, 0, 5, 5} + fixed = 4 + 8 + 8 + 7 + 8 + 5 + 5 } numCols := len(headers)