From daea67322cd387c2caf8f1a326c90b4276c6e9bc Mon Sep 17 00:00:00 2001 From: T Date: Fri, 8 Aug 2025 10:57:56 -0600 Subject: bugfixes --- internal/tui/app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/tui/app.go') 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 { -- cgit v1.2.3