diff options
author | T <t@tjp.lol> | 2025-08-13 16:48:58 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-13 16:49:20 -0600 |
commit | 7d0d21ba8663ab7ff777a06f4b113337fa717ff3 (patch) | |
tree | f06d8691fd13bee6ebccfc17a08c599bd5710705 /internal/tui/form.go | |
parent | 5c3554c7e49abe263faf54c61e435ba1d5202d27 (diff) |
go module in git.tjp.lol
Diffstat (limited to 'internal/tui/form.go')
-rw-r--r-- | internal/tui/form.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/internal/tui/form.go b/internal/tui/form.go index d70fb8b..09db989 100644 --- a/internal/tui/form.go +++ b/internal/tui/form.go @@ -7,7 +7,7 @@ import ( "strings" "time" - "punchcard/internal/reports" + "git.tjp.lol/punchcard/internal/reports" "github.com/charmbracelet/bubbles/textinput" tea "github.com/charmbracelet/bubbletea" @@ -104,8 +104,8 @@ func newDateRangeField(label string) FormField { func newReportTypeField(label string) FormField { f := FormField{ - Model: textinput.New(), - label: label, + Model: textinput.New(), + label: label, suggestions: suggestReportType, } f.Validate = func(s string) error { |