diff options
author | yp05327 <576951401@qq.com> | 2023-03-20 16:37:20 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 15:37:20 +0800 |
commit | b33cae7a3adf4c520f48e519eb24fa001a4b0ea4 (patch) | |
tree | 5420811741b0ff921dd9ce503200f89b596835ae | |
parent | 854fcb1434d4af2c17139deb773cfd1099728975 (diff) | |
download | gitea-b33cae7a3adf4c520f48e519eb24fa001a4b0ea4.tar.gz gitea-b33cae7a3adf4c520f48e519eb24fa001a4b0ea4.zip |
Fix backport #23336 (#23584)
-rw-r--r-- | templates/repo/issue/new_form.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/repo/issue/new_form.tmpl b/templates/repo/issue/new_form.tmpl index 4ce4ffb8e3..c21d0c1689 100644 --- a/templates/repo/issue/new_form.tmpl +++ b/templates/repo/issue/new_form.tmpl @@ -202,7 +202,7 @@ <div class="selected"> {{if .Project}} <a class="item muted sidebar-item-link" href="{{.Project.Link}}"> - {{if .IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}} + {{if .Project.IsOrganizationProject}}{{svg "octicon-project-symlink" 18 "gt-mr-3"}}{{else}}{{svg "octicon-project" 18 "gt-mr-3"}}{{end}} {{.Project.Title}} </a> {{end}} |