diff options
author | yp05327 <576951401@qq.com> | 2023-03-19 13:44:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-19 13:44:48 +0100 |
commit | 1a4efa0ee9a49d48549be7479a46be133b9bc260 (patch) | |
tree | 8be773cdf4ea88c662196e8e469b50bb997e3307 /templates/shared/issuelist.tmpl | |
parent | Match api migration behavior to web behavior (#23552) (diff) | |
download | forgejo-1a4efa0ee9a49d48549be7479a46be133b9bc260.tar.xz forgejo-1a4efa0ee9a49d48549be7479a46be133b9bc260.zip |
Use `project.IconName` instead of repeated unreadable `if-else` chains (#23538)
The project type will be changed in
https://github.com/go-gitea/gitea/pull/23353, so the old fix
https://github.com/go-gitea/gitea/pull/23325 will not work as well.
And I also found that there were some problems in the old fix....
---------
Co-authored-by: Lauris BH <lauris@nix.lv>
Diffstat (limited to 'templates/shared/issuelist.tmpl')
-rw-r--r-- | templates/shared/issuelist.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/shared/issuelist.tmpl b/templates/shared/issuelist.tmpl index ae9cb55d44..40ddb4dab0 100644 --- a/templates/shared/issuelist.tmpl +++ b/templates/shared/issuelist.tmpl @@ -88,7 +88,7 @@ {{end}} {{if .Project}} <a class="project" href="{{.Project.Link}}"> - {{if .Project.IsOrganizationProject}}{{svg "octicon-project-symlink" 14 "gt-mr-2"}}{{else}}{{svg "octicon-project" 14 "gt-mr-2"}}{{end}}{{.Project.Title}} + {{svg .Project.IconName 14 "gt-mr-2"}}{{.Project.Title}} </a> {{end}} {{if .Ref}} |