mirror of
1
Fork 0

fix(ui): use discussions icon in issue list entries (#7099)

So it is consistent with the icon used in the tab with comments.

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/7099
Reviewed-by: Gusted <gusted@noreply.codeberg.org>
Co-authored-by: 0ko <0ko@noreply.codeberg.org>
Co-committed-by: 0ko <0ko@noreply.codeberg.org>
This commit is contained in:
0ko 2025-03-04 21:37:51 +00:00 committed by Gusted
parent 15e89bf0ef
commit bb0e26a7b4
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@
{{if .NumComments}} {{if .NumComments}}
<div class="text grey"> <div class="text grey">
<a class="tw-no-underline muted flex-text-block" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}"> <a class="tw-no-underline muted flex-text-block" href="{{if .Link}}{{.Link}}{{else}}{{$.Link}}/{{.Index}}{{end}}">
{{svg "octicon-comment" 16}}{{.NumComments}} {{svg "octicon-comment-discussion" 16}}{{.NumComments}}
</a> </a>
</div> </div>
{{end}} {{end}}