aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiteabot <teabot@gitea.io>2025-02-26 09:29:07 +0800
committerGitHub <noreply@github.com>2025-02-25 17:29:07 -0800
commit27a60fd91b4046b52f330719eafbdd1f2fbc319d (patch)
treeb2c2bc6bbbb423b8f4af93fbeb6b6b1d32f36465
parente3021fae79f31907a3b5be512397ede547b74c02 (diff)
downloadgitea-27a60fd91b4046b52f330719eafbdd1f2fbc319d.tar.gz
gitea-27a60fd91b4046b52f330719eafbdd1f2fbc319d.zip
Fix inconsistent closed issue list icon (#33722) (#33728)
Backport #33722 by @lunny Fixe #33718 Before ![image](https://github.com/user-attachments/assets/2c77e249-a118-4471-8c63-ead4fe0f6336) After ![image](https://github.com/user-attachments/assets/c082eba8-5b21-4814-b091-c725ca46ccf3) Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
-rw-r--r--templates/repo/issue/openclose.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/openclose.tmpl b/templates/repo/issue/openclose.tmpl
index b9dd04a7db..00a31b5fad 100644
--- a/templates/repo/issue/openclose.tmpl
+++ b/templates/repo/issue/openclose.tmpl
@@ -17,7 +17,7 @@
{{ctx.Locale.PrettyNumber .OpenCount}} {{ctx.Locale.Tr "repo.issues.open_title"}}
</a>
<a class="{{if eq .State "closed"}}active {{end}}item flex-text-inline" href="{{if eq .State "closed"}}{{$allStatesLink}}{{else}}{{$closedLink}}{{end}}">
- {{svg "octicon-check"}}
+ {{svg "octicon-issue-closed"}}
{{ctx.Locale.PrettyNumber .ClosedCount}} {{ctx.Locale.Tr "repo.issues.closed_title"}}
</a>
</div>