diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-10-09 16:48:29 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-10-09 16:48:29 +0200 |
commit | 40d88787eaea9913b9817039d5535e9df01d4902 (patch) | |
tree | 079a371efeaefcc5b39d1e5cab82273bf8910283 /sonar-server | |
parent | 19cabf72b07e059842f92e0d7e3e641fa033918d (diff) | |
download | sonarqube-40d88787eaea9913b9817039d5535e9df01d4902.tar.gz sonarqube-40d88787eaea9913b9817039d5535e9df01d4902.zip |
Increase the maximum size of labels displayed in search results
Diffstat (limited to 'sonar-server')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/search/_autocomplete.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/search/_autocomplete.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/search/_autocomplete.html.erb index 39341c87f0e..3e2f99eee50 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/search/_autocomplete.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/search/_autocomplete.html.erb @@ -11,7 +11,7 @@ %> <li id="<%= resource.id -%>"> <div class="q"><%= message("qualifiers.#{resource.qualifier}") if first -%></div> - <%= qualifier_icon resource -%> <%= highlight(truncate(resource.name(true), :length => 65), params[:s]) -%> + <%= qualifier_icon resource -%> <%= highlight(truncate(resource.name(true), :length => 70), params[:s]) -%> </li> <% first=false end |