From 2c78c60d08bf8b9157f55072fee55c84b97da461 Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 28 May 2026 13:52:24 -0400 Subject: [PATCH] fix(tui): set explicit NAME column width to match content truncation Was width=0 (auto) which let lipgloss over-allocate the column, causing visible empty space between truncated names and TYPE column. Now set to nameW explicitly so column width = truncation limit. --- internal/tui/tab_sites.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/tab_sites.go b/internal/tui/tab_sites.go index b53358f..93eeabe 100644 --- a/internal/tui/tab_sites.go +++ b/internal/tui/tab_sites.go @@ -412,7 +412,7 @@ func (m Model) computeLayout() tableLayout { for i, c := range cols { if i == 1 { headers[i] = "NAME" - widths[i] = 0 + widths[i] = nameW continue } if i == 6 {