mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	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>
This commit is contained in:
		| @@ -114,7 +114,7 @@ | ||||
| 						<span class="due-date flex-text-inline" data-tooltip-content="{{ctx.Locale.Tr "repo.issues.due_date"}}"> | ||||
| 							<span{{if .IsOverdue}} class="text red"{{end}}> | ||||
| 								{{svg "octicon-calendar" 14}} | ||||
| 								{{DateTime "short" .DeadlineUnix}} | ||||
| 								{{DateTime "short" (.DeadlineUnix.Format "2006-01-02")}} | ||||
| 							</span> | ||||
| 						</span> | ||||
| 					{{end}} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user