From 33a3ff9bcb58ba45b5fbfbfb1fe96b300075d6af Mon Sep 17 00:00:00 2001 From: Tyler Koenig Date: Thu, 4 Jun 2026 16:13:40 -0400 Subject: [PATCH] fix(tui): expand log viewport to fill content area Previous + 3 over-restricted viewport height, leaving blank lines at the bottom of the logs tab. --- internal/tui/update.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/tui/update.go b/internal/tui/update.go index 72ad092..9f3d33d 100644 --- a/internal/tui/update.go +++ b/internal/tui/update.go @@ -127,7 +127,7 @@ func (m *Model) handleResize(msg tea.WindowSizeMsg) (tea.Model, tea.Cmd) { m.maxTableRows = 1 } m.logViewport.Width = msg.Width - chromePadH - m.logViewport.Height = msg.Height - (chromePadV + chromeHeader + chromeGaps + chromeFooter + 3) + m.logViewport.Height = msg.Height - (chromePadV + chromeHeader + chromeFooter + 2) m.historyViewport.Width = msg.Width - chromePadH m.historyViewport.Height = msg.Height - 10 m.slaViewport.Width = msg.Width - chromePadH