diff options
author | Yarden Shoham <hrsi88@gmail.com> | 2023-01-02 14:42:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 20:42:39 +0800 |
commit | 72d1f9e63e3de5a3f7a6f1bb498c33956ccd3da8 (patch) | |
tree | a37d5c993a51ed2ff923082e88911247000c064e | |
parent | 06970755470d24cbedbc9bcc26389fa52d2fe310 (diff) | |
download | gitea-72d1f9e63e3de5a3f7a6f1bb498c33956ccd3da8.tar.gz gitea-72d1f9e63e3de5a3f7a6f1bb498c33956ccd3da8.zip |
Fix due date rendering the wrong date in issue (#22302) (#22306)
Backport #22302
Previously, the last minute of the chosen date caused bad timezone
rendering.
For example, I chose January 4th, 2023.
### Before
```html
<time data-format="date" datetime="Wed, 04 Jan 2023 23:59:59 +0000">January 5, 2023</time>
```
### After
```html
<time data-format="date" datetime="2023-01-04">January 4, 2023</time>
```
---
Closes #21999
Signed-off-by: Yarden Shoham <hrsi88@gmail.com>
-rw-r--r-- | templates/repo/issue/view_content/sidebar.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/view_content/sidebar.tmpl b/templates/repo/issue/view_content/sidebar.tmpl index af648387db..41c7e022c4 100644 --- a/templates/repo/issue/view_content/sidebar.tmpl +++ b/templates/repo/issue/view_content/sidebar.tmpl @@ -413,7 +413,7 @@ <div class="df sb ac"> <div class="due-date tooltip {{if .Issue.IsOverdue}}text red{{end}}" {{if .Issue.IsOverdue}}data-content="{{.locale.Tr "repo.issues.due_date_overdue"}}"{{end}}> {{svg "octicon-calendar" 16 "mr-3"}} - <time data-format="date" datetime="{{.Issue.DeadlineUnix.FormatLong}}">{{.Issue.DeadlineUnix.FormatDate}}</time> + <time data-format="date" datetime="{{.Issue.DeadlineUnix.FormatDate}}">{{.Issue.DeadlineUnix.FormatDate}}</time> </div> <div> {{if and .HasIssuesOrPullsWritePermission (not .Repository.IsArchived)}} |