diff options
author | T <t@tjp.lol> | 2025-08-13 13:04:05 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-13 13:42:43 -0600 |
commit | 389b72e55b04ccfc02b04eb81cb8f7bb7a5c8b59 (patch) | |
tree | be3015b2c7db90cddfc85d3e77ddc76213485494 /internal/tui/commands.go | |
parent | 29c6581e08d0fe98433eff218de7701b51a6861c (diff) |
history filtering
Diffstat (limited to 'internal/tui/commands.go')
-rw-r--r-- | internal/tui/commands.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/tui/commands.go b/internal/tui/commands.go index ad3255f..040df4b 100644 --- a/internal/tui/commands.go +++ b/internal/tui/commands.go @@ -20,6 +20,8 @@ type ( recheckBounds struct{} openCreateClientModal struct{} openCreateProjectModal struct{} + openHistoryFilterModal struct{} + updateHistoryFilter HistoryFilter ) func navigate(forward bool) tea.Cmd { @@ -98,3 +100,7 @@ func createClientModal() tea.Cmd { func createProjectModal() tea.Cmd { return func() tea.Msg { return openCreateProjectModal{} } } + +func createHistoryFilterModal() tea.Cmd { + return func() tea.Msg { return openHistoryFilterModal{} } +} |