From 58757f9a952739931bbce199d2217384cf766833 Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Mon, 10 Feb 2025 19:36:49 -0500 Subject: [PATCH] Use human-readable timestamp --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 3ed593f..4cc8921 100644 --- a/main.go +++ b/main.go @@ -841,7 +841,7 @@ func (m *commit) Title() string { // Description implements list.DefaultItem. func (m *commit) Description() string { // TODO: Support absolute/relative time. - return fmt.Sprintf("Create Time: %s", m.underlying.CreateTime.AsTime().Format(time.RFC3339Nano)) + return fmt.Sprintf("Create Time: %s", m.underlying.CreateTime.AsTime().Format(time.Stamp)) } type commitFile struct {