diff options
author | T <t@tjp.lol> | 2025-08-08 10:57:56 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-12 14:45:56 -0600 |
commit | daea67322cd387c2caf8f1a326c90b4276c6e9bc (patch) | |
tree | da1d2a85e530640a1ed804fece38da30940e7dd5 /internal/tui/app.go | |
parent | 54c791927b2851fb6739ed75897090c3c39ecca1 (diff) |
bugfixes
Diffstat (limited to 'internal/tui/app.go')
-rw-r--r-- | internal/tui/app.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/tui/app.go b/internal/tui/app.go index 0caf571..6765cd1 100644 --- a/internal/tui/app.go +++ b/internal/tui/app.go @@ -203,9 +203,9 @@ func (m *AppModel) openEntryEditor() { f.fields[0].Focus() entry := m.historyBox.selectedEntry() - f.fields[0].SetValue(entry.StartTime.Format(time.DateTime)) + f.fields[0].SetValue(entry.StartTime.Local().Format(time.DateTime)) if entry.EndTime.Valid { - f.fields[1].SetValue(entry.EndTime.Time.Format(time.DateTime)) + f.fields[1].SetValue(entry.EndTime.Time.Local().Format(time.DateTime)) } for _, client := range m.projectsBox.clients { if client.ID == entry.ClientID { |