aboutsummaryrefslogtreecommitdiff
path: root/templates/commit.qtpl.go
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2025-02-08 22:13:05 +0100
committerGabriel A. Giovanini <mail@gabrielgio.me>2025-02-08 22:14:52 +0100
commitdf980f995128e4a1d2180e711c191a5d39bf90fb (patch)
tree3f7468523cee7ceb21e4190b00bfc90f8431a3e0 /templates/commit.qtpl.go
parentaf516a40ecee17bc668ef225bbda16792e29244d (diff)
downloadcerrado-df980f995128e4a1d2180e711c191a5d39bf90fb.tar.gz
cerrado-df980f995128e4a1d2180e711c191a5d39bf90fb.tar.bz2
cerrado-df980f995128e4a1d2180e711c191a5d39bf90fb.zip
ref: Use proper time formatting
Diffstat (limited to 'templates/commit.qtpl.go')
-rw-r--r--templates/commit.qtpl.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/commit.qtpl.go b/templates/commit.qtpl.go
index eeaa1f0..75ae899 100644
--- a/templates/commit.qtpl.go
+++ b/templates/commit.qtpl.go
@@ -89,9 +89,9 @@ func StreamCommit(qw422016 *qt422016.Writer, name string, c *object.Commit, show
<div class="col-md text-md-end">
<a title="`)
//line templates/commit.qtpl:17
- qw422016.E().S(c.Author.When.Format("2006-01-02 15:04:05 UTC"))
+ qw422016.E().S(c.Author.When.UTC().Format("2006-01-02 15:04:05"))
//line templates/commit.qtpl:17
- qw422016.N().S(`">`)
+ qw422016.N().S(` UTC">`)
//line templates/commit.qtpl:17
qw422016.E().S(humanize.Time(c.Author.When))
//line templates/commit.qtpl:17