]> source.dussan.org Git - gitea.git/commit
Fix due date rendering the wrong date in issue (#22302) (#22306)
authorYarden Shoham <hrsi88@gmail.com>
Mon, 2 Jan 2023 12:42:39 +0000 (14:42 +0200)
committerGitHub <noreply@github.com>
Mon, 2 Jan 2023 12:42:39 +0000 (20:42 +0800)
commit72d1f9e63e3de5a3f7a6f1bb498c33956ccd3da8
treea37d5c993a51ed2ff923082e88911247000c064e
parent06970755470d24cbedbc9bcc26389fa52d2fe310
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>
templates/repo/issue/view_content/sidebar.tmpl