loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix wrong due date rendering in issue list page (#28588)

It included the hours, minutes, and seconds. By removing these, the date
renders correctly.

Signed-off-by: Yarden Shoham <git@yardenshoham.com>

authored by

Yarden Shoham and committed by
GitHub
d9ed931c 907c97aa

+1 -1
+1 -1
templates/shared/issuelist.tmpl
··· 114 114 <span class="due-date flex-text-inline" data-tooltip-content="{{ctx.Locale.Tr "repo.issues.due_date"}}"> 115 115 <span{{if .IsOverdue}} class="text red"{{end}}> 116 116 {{svg "octicon-calendar" 14}} 117 - {{DateTime "short" .DeadlineUnix}} 117 + {{DateTime "short" (.DeadlineUnix.Format "2006-01-02")}} 118 118 </span> 119 119 </span> 120 120 {{end}}