1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Fix some places which doesn't repsect org full name setting (#32243)

Partially fix #31345
This commit is contained in:
Lunny Xiao
2024-11-17 22:24:49 -08:00
committed by GitHub
parent 696fbe6036
commit 896314c7a2
3 changed files with 3 additions and 3 deletions

View File

@@ -52,7 +52,7 @@
<tr>
<td>{{.ID}}</td>
<td>
<a href="{{.HomeLink}}">{{.Name}}</a>
<a href="{{.HomeLink}}">{{if and DefaultShowFullName .FullName}}{{.FullName}} ({{.Name}}){{else}}{{.Name}}{{end}}</a>
{{if .Visibility.IsPrivate}}
<span class="text gold">{{svg "octicon-lock"}}</span>
{{end}}