From af383be2b23821f78690077e0ca63324bcc2e79d Mon Sep 17 00:00:00 2001 From: ruinivist Date: Tue, 10 Feb 2026 22:32:56 +0000 Subject: [PATCH] fix: line split when too many timezones --- internal/ui/model.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/ui/model.go b/internal/ui/model.go index b67f5e4..db845c0 100644 --- a/internal/ui/model.go +++ b/internal/ui/model.go @@ -123,7 +123,8 @@ func (m Model) View() string { if m.manualTz != "" { header += SubtleStyle.Render(fmt.Sprintf("Tz : %s\n", m.displayTz)) } else { - header += SubtleStyle.MaxWidth(60).Render(fmt.Sprintf("User : %s\nTz %s\n", m.username, m.displayTz)) + // you need Width to split, MaxWidth just truncates + header += SubtleStyle.Width(48).Render(fmt.Sprintf("User : %s\nTz : %s\n", m.username, m.displayTz)) } table := m.table.View()