From 01fad04c9be92af153ed82cfd61fee49fe283d61 Mon Sep 17 00:00:00 2001 From: T Date: Tue, 2 Sep 2025 11:17:44 -0600 Subject: history pane: summary line with active filters and total duration --- internal/tui/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'internal/tui/app.go') diff --git a/internal/tui/app.go b/internal/tui/app.go index 6bcc77d..6031adb 100644 --- a/internal/tui/app.go +++ b/internal/tui/app.go @@ -407,7 +407,7 @@ func (m AppModel) View() string { timerBox := m.timerBox.View(timerBoxWidth, timerBoxHeight, m.selectedBox == TimerBox) projectsBox := m.projectsBox.View(projectsBoxWidth, projectsBoxHeight, m.selectedBox == ProjectsBox) - historyBox := m.historyBox.View(historyBoxWidth, historyBoxHeight, m.selectedBox == HistoryBox, m.timerBox) + historyBox := m.historyBox.View(historyBoxWidth, historyBoxHeight, m.selectedBox == HistoryBox, m.timerBox, m.projectsBox.clients, m.projectsBox.projects) leftColumn := lipgloss.JoinVertical(lipgloss.Left, timerBox, projectsBox) mainContent := lipgloss.JoinHorizontal(lipgloss.Top, leftColumn, historyBox) -- cgit v1.2.3