mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	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>
This commit is contained in:
		@@ -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>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user