From 5bc9f7fcf9aece92c3fa2a0ea56e5585261a7f28 Mon Sep 17 00:00:00 2001
From: yp05327 <576951401@qq.com>
Date: Sat, 29 Apr 2023 03:58:59 +0900
Subject: [PATCH] Improve commit date in commit graph (#24399)
The commit date time is based on server's time zone not user's local
time zone.
Before:
![image](https://user-images.githubusercontent.com/18380374/235074112-cc1e032f-6b43-4876-a1bc-dd48b393866b.png)
After:
![image](https://user-images.githubusercontent.com/18380374/235074056-329811e8-3e81-4b55-b5a1-580ac22b6d72.png)
---
templates/repo/graph/commits.tmpl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/templates/repo/graph/commits.tmpl b/templates/repo/graph/commits.tmpl
index 44f63a7d7..f5fc27315 100644
--- a/templates/repo/graph/commits.tmpl
+++ b/templates/repo/graph/commits.tmpl
@@ -71,7 +71,7 @@
{{$userName}}
{{end}}
- {{$commit.Date}}
+ {{DateTime "full" $commit.Date}}
{{end}}
{{end}}