]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2887 Profile changelog: fix dropdown lists
authorEvgeny Mandrikov <mandrikov@gmail.com>
Mon, 10 Oct 2011 13:28:34 +0000 (17:28 +0400)
committerEvgeny Mandrikov <mandrikov@gmail.com>
Mon, 10 Oct 2011 13:42:16 +0000 (17:42 +0400)
sonar-server/src/main/webapp/WEB-INF/app/controllers/profiles_controller.rb

index 2e27aeb9c4b59f98a59edaf6b069ae12beb179d5..48c87e4c8c042320b55e7721dd573ffac11da3b7 100644 (file)
@@ -225,7 +225,7 @@ class ProfilesController < ApplicationController
       end
       @changes = ActiveRuleChange.find(:all, :conditions => ['profile_id=? and ?<profile_version and profile_version<=?', @profile.id, @since_version, @to_version], :order => 'id desc')
 
-      @select_versions = versions.map {|u| [ message(u.profile_version == last_version ? 'quality_profiles.last_version_x_with_date' : 'quality_profiles.version_x_with_date', :params => [u.profile_version.to_s, l(u.change_date)]) ]} | [[message('quality_profiles.no_version'), 0]];
+      @select_versions = versions.map {|u| [ message(u.profile_version == last_version ? 'quality_profiles.last_version_x_with_date' : 'quality_profiles.version_x_with_date', :params => [u.profile_version.to_s, l(u.change_date)]), u.profile_version ]} | [[message('quality_profiles.no_version'), 0]];
     end
   end