summaryrefslogtreecommitdiff
path: root/internal/tui/commands.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/tui/commands.go')
-rw-r--r--internal/tui/commands.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/tui/commands.go b/internal/tui/commands.go
index 66a0c4d..4fdd9e0 100644
--- a/internal/tui/commands.go
+++ b/internal/tui/commands.go
@@ -23,6 +23,7 @@ type (
openTimeEntryEditor struct{}
openContractorEditor struct{}
openClientOrProjectEditor struct{}
+ filterHistoryByProjectBox struct{}
openModalUnchanged struct{}
openDeleteConfirmation struct{}
recheckBounds struct{}
@@ -110,6 +111,10 @@ func editClientOrProject() tea.Cmd {
return func() tea.Msg { return openClientOrProjectEditor{} }
}
+func filterHistoryFromProjectBox() tea.Cmd {
+ return func() tea.Msg { return filterHistoryByProjectBox{} }
+}
+
func reOpenModal() tea.Cmd {
return func() tea.Msg { return openModalUnchanged{} }
}