diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-10-04 20:39:45 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-10-04 20:39:45 +0000 |
commit | 389cb9cd02f3c7ac11ba115950820045953a8518 (patch) | |
tree | 6dc86a079bdefe24578f8ea09b38e82b88e93437 | |
parent | e871a18725ae45b245a3cface0935206ae35d750 (diff) | |
download | sonarqube-389cb9cd02f3c7ac11ba115950820045953a8518.tar.gz sonarqube-389cb9cd02f3c7ac11ba115950820045953a8518.zip |
fix alignment of tendency icons in the components page
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/helpers/components_helper.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/helpers/components_helper.rb b/sonar-server/src/main/webapp/WEB-INF/app/helpers/components_helper.rb index 3e3ff09e12a..eb6bff07492 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/helpers/components_helper.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/helpers/components_helper.rb @@ -50,8 +50,7 @@ module ComponentsHelper elsif column.metric_column? measure = item_by_metric_id(measures_by_snapshot[snapshot], column.id ) measure_param = measure.value if measure - content=html_measure(measure, nil, true, nil, nil, true, true) - + content=html_measure(measure, nil, true, nil, nil, true, false) end "<#{html_node} #{"nowrap='nowrap'" if nowrap} #{"x='#{measure_param}'" if measure_param} class='right'>" + content + "</#{html_node}>" |