diff options
author | simonbrandhof <simon.brandhof@gmail.com> | 2010-12-24 15:56:09 +0000 |
---|---|---|
committer | simonbrandhof <simon.brandhof@gmail.com> | 2010-12-24 15:56:09 +0000 |
commit | e3d888b3372064b1501aafed9fcb073a81358e25 (patch) | |
tree | ea69982425516e239dc4576f93c7671d4244069f /sonar-server/src | |
parent | 695e7886256830e95c9545e9f599e1d198a733b4 (diff) | |
download | sonarqube-e3d888b3372064b1501aafed9fcb073a81358e25.tar.gz sonarqube-e3d888b3372064b1501aafed9fcb073a81358e25.zip |
rename select box in filter header
Diffstat (limited to 'sonar-server/src')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb index 807acc83eb9..df1adafec8d 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/filters/_list.html.erb @@ -4,7 +4,7 @@ <div class="operations"> <form action="<%= url_for :overwrite_params => {:period => nil} -%>" style="display: inline" method="get"> <select name="period" onchange="submit()" class="small"> - <option value="">Variations...</option> + <option value="">Time changes...</option> <% period_names.each_with_index do |name, index| %> <option value="<%= index+1 -%>" <%= 'selected' if @filter_context.period_index==index+1 -%>><%= name -%></value> <% end %> @@ -87,7 +87,7 @@ measure = @filter_context.measure(snapshot, column.metric) %> <% if column.variation %> - <%= format_variation(measure, :index => @filter_context.period_index) -%> + <%= format_variation(measure, :index => @filter_context.period_index, :style => 'light') -%> <% else %> <%= format_measure(measure) -%> <% if @filter_context.selected_period? %> |