From: Fabrice Bellingard Date: Thu, 27 Sep 2012 15:27:52 +0000 (+0200) Subject: SONAR-3723 Bad rendering of widget properties X-Git-Tag: 3.3~185 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3ac88eeaeff64c18c4e1402c149d3d71118a8594;p=sonarqube.git SONAR-3723 Bad rendering of widget properties --- diff --git a/sonar-server/src/main/webapp/WEB-INF/app/helpers/properties_helper.rb b/sonar-server/src/main/webapp/WEB-INF/app/helpers/properties_helper.rb index a032076f2cc..3b20e306445 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/helpers/properties_helper.rb +++ b/sonar-server/src/main/webapp/WEB-INF/app/helpers/properties_helper.rb @@ -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)