diff options
author | T <t@tjp.lol> | 2025-09-02 11:17:44 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-09-02 11:37:19 -0600 |
commit | 01fad04c9be92af153ed82cfd61fee49fe283d61 (patch) | |
tree | ed6bd6d4fb93172a8b77b346d797c6dd5ad150a7 /internal/tui/app.go | |
parent | add7c1a8126733dd86282f443dc53127888c06af (diff) |
history pane: summary line with active filters and total duration
Diffstat (limited to 'internal/tui/app.go')
-rw-r--r-- | internal/tui/app.go | 2 |
1 files changed, 1 insertions, 1 deletions
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) |