diff options
author | Giteabot <teabot@gitea.io> | 2025-02-26 09:29:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-25 17:29:07 -0800 |
commit | 27a60fd91b4046b52f330719eafbdd1f2fbc319d (patch) | |
tree | b2c2bc6bbbb423b8f4af93fbeb6b6b1d32f36465 | |
parent | e3021fae79f31907a3b5be512397ede547b74c02 (diff) | |
download | gitea-27a60fd91b4046b52f330719eafbdd1f2fbc319d.tar.gz gitea-27a60fd91b4046b52f330719eafbdd1f2fbc319d.zip |
Fix inconsistent closed issue list icon (#33722) (#33728)
Backport #33722 by @lunny
Fixe #33718
Before

After

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
-rw-r--r-- | templates/repo/issue/openclose.tmpl | 2 |
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> |