diff --git a/internal/tui/view_dashboard.go b/internal/tui/view_dashboard.go index 04a7f3a..f3e4e78 100644 --- a/internal/tui/view_dashboard.go +++ b/internal/tui/view_dashboard.go @@ -185,7 +185,7 @@ func (m Model) viewDashboard() string { if contentHeight < 1 { contentHeight = 1 } - paddedContent := lipgloss.NewStyle().Height(contentHeight).Render(content) + paddedContent := lipgloss.NewStyle().Height(contentHeight).MaxHeight(contentHeight).Render(content) return outerPad.Render(lipgloss.JoinVertical(lipgloss.Top, header, paddedContent, footer)) }