]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-3723 Bad rendering of widget properties
authorFabrice Bellingard <fabrice.bellingard@sonarsource.com>
Thu, 27 Sep 2012 15:27:52 +0000 (17:27 +0200)
committerFabrice Bellingard <fabrice.bellingard@sonarsource.com>
Thu, 27 Sep 2012 15:29:29 +0000 (17:29 +0200)
sonar-server/src/main/webapp/WEB-INF/app/helpers/properties_helper.rb

index a032076f2cc41dcfe2eae971716edf7f4a595260..3b20e30644513909b22eede1c1597c27d1ff3885 100644 (file)
@@ -24,7 +24,8 @@ module PropertiesHelper
       text_field_tag key, value, {:size => 25}.update(options)
 
     elsif type==PropertyType::TYPE_TEXT
-      text_area_tag key, value, {:size => '120x6'}.update(options)
+      #text_area_tag key, value, {:size => '120x6'}.update(options)
+      text_area_tag key, value, {:rows => '6', :style => 'width: 100%'}.update(options)
 
     elsif type==PropertyType::TYPE_PASSWORD
       password_field_tag key, value, {:size => 25}.update(options)