mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-03-13 23:32:41 +00:00
Add missing public user visibility in user details page (#27246)
It seems that `Public` user visibility is missing in the template. Before:  After: 
This commit is contained in:
parent
6af34c09a7
commit
65d0b7c13a
1 changed files with 1 additions and 0 deletions
|
@ -36,6 +36,7 @@
|
|||
</div>
|
||||
<div class="flex-item-body">
|
||||
<b>{{ctx.Locale.Tr "settings.visibility"}}:</b>
|
||||
{{if .User.Visibility.IsPublic}}{{ctx.Locale.Tr "settings.visibility.public"}}{{end}}
|
||||
{{if .User.Visibility.IsLimited}}{{ctx.Locale.Tr "settings.visibility.limited"}}{{end}}
|
||||
{{if .User.Visibility.IsPrivate}}{{ctx.Locale.Tr "settings.visibility.private"}}{{end}}
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue