summaryrefslogtreecommitdiffstats
path: root/sonar-server
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@gmail.com>2012-10-09 16:48:29 +0200
committerSimon Brandhof <simon.brandhof@gmail.com>2012-10-09 16:48:29 +0200
commit40d88787eaea9913b9817039d5535e9df01d4902 (patch)
tree079a371efeaefcc5b39d1e5cab82273bf8910283 /sonar-server
parent19cabf72b07e059842f92e0d7e3e641fa033918d (diff)
downloadsonarqube-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.erb2
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