diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-03-12 17:34:42 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-03-12 17:34:42 +0100 |
commit | 2c551a82a4af14e71a800f5554092367e0ebefdb (patch) | |
tree | 402cc05aeb4bc7c11502430544f70144ccee32d1 /sonar-server/src/main/webapp/WEB-INF | |
parent | 3b3b7abe23d74f5a94096ec38263ae4e192d4274 (diff) | |
download | sonarqube-2c551a82a4af14e71a800f5554092367e0ebefdb.tar.gz sonarqube-2c551a82a4af14e71a800f5554092367e0ebefdb.zip |
Update select tag options
Diffstat (limited to 'sonar-server/src/main/webapp/WEB-INF')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb index 3c9d5580200..87c0dd5bbed 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/rules_configuration/index.html.erb @@ -48,6 +48,7 @@ <%= dropdown_tag "repositories", options_for_select(@select_repositories, @repositories), { :html_id => 'search_repository', :multiple => true, + :show_search_box => true, :width => '120px', :placeholder => message('any') } -%> @@ -57,6 +58,7 @@ <%= dropdown_tag "priorities", options_for_select(@select_priority, @priorities), { :html_id => 'search_priority', :multiple => true, + :show_search_box => true, :width => '90px', :placeholder => message('any') } -%> @@ -65,7 +67,6 @@ <span class="note"><%= message('activation') -%></span><br/> <%= dropdown_tag "rule_activation", options_for_select(@select_activation, @activation), { :html_id => 'search_activation', - :show_search_box => false, :width => '100px' } -%> </div> @@ -74,6 +75,7 @@ <%= dropdown_tag "status", options_for_select(@select_status, @status), { :html_id => 'search_status', :multiple => true, + :show_search_box => true, :width => '120px', :placeholder => message('rules_configuration.available_rules') } -%> @@ -83,7 +85,6 @@ <span class="note"><%= message('inheritance') -%></span><br/> <%= dropdown_tag "inheritance", options_for_select(@select_inheritance, @inheritance), { :html_id => 'search_inheritance', - :show_search_box => false, :width => '120px' } -%> </div> |