]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3620 Larger text field
authorDavid Gageot <david@gageot.net>
Mon, 9 Jul 2012 14:06:10 +0000 (16:06 +0200)
committerDavid Gageot <david@gageot.net>
Tue, 10 Jul 2012 06:15:02 +0000 (08:15 +0200)
120 cols instead of 40

sonar-server/src/main/webapp/WEB-INF/app/helpers/properties_helper.rb

index f9f215479c0cd45e411f0de6cc9e38c9fe39258c..65fb7cc3ebd0f518b851d7ecf661c43ee5dea5c7 100644 (file)
@@ -24,7 +24,7 @@ module PropertiesHelper
       text_field_tag key, value, {:size => 25}.update(options)
 
     elsif type==PropertyType::TYPE_TEXT
-      text_area_tag key, value, {:size => '40x6'}.update(options)
+      text_area_tag key, value, {:size => '120x6'}.update(options)
 
     elsif type==PropertyType::TYPE_PASSWORD
       password_field_tag key, value, {:size => 25}.update(options)