1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Fix tags header and pretty format numbers (#25624)

This caused by #23465
This commit is contained in:
Lunny Xiao
2023-07-05 12:11:42 +08:00
committed by GitHub
parent e7495735d5
commit 90b3b3dbf8
4 changed files with 6 additions and 5 deletions

View File

@@ -203,6 +203,7 @@ func releasesOrTags(ctx *context.Context, isTagList bool) {
ctx.Data["Page"] = pager
if isTagList {
ctx.Data["PageIsViewCode"] = !ctx.Repo.Repository.UnitEnabled(ctx, unit.TypeReleases)
ctx.HTML(http.StatusOK, tplTagsList)
} else {
ctx.HTML(http.StatusOK, tplReleasesList)