Allow 20 characters for "View [organization]" button (#13906)

In the "View [organization]" button on the dashboard, the organization name is currenly shortened to 10 chars.
This is a bit too limited. In all other places in the code the name is also shortened to 20 instead of 10.

Co-authored-by: 6543 <6543@obermui.de>
forgejo
Jimmy Praet 4 years ago committed by GitHub
parent 6a370363d4
commit 1a372e5b21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -59,7 +59,7 @@
{{end}}
<div class="item">
<a class="ui blue basic button" href="{{.ContextUser.HomeLink}}" title='{{.i18n.Tr "home.view_home" .ContextUser.Name}}'>
{{.i18n.Tr "home.view_home" (.ContextUser.ShortName 10)}}
{{.i18n.Tr "home.view_home" (.ContextUser.ShortName 20)}}
</a>
</div>
</div>

Loading…
Cancel
Save