diff options
author | David Gageot <david@gageot.net> | 2012-10-15 12:23:25 +0200 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2012-10-15 12:23:58 +0200 |
commit | 0f24fd42a5a3acc63fb0c3702f0460fc30463ad9 (patch) | |
tree | c687e009b6d321f873a1175d43a10ad691bcbd8d | |
parent | 9134c81000c1e9100fc6ce9b694790e2cbe834e9 (diff) | |
download | sonarqube-0f24fd42a5a3acc63fb0c3702f0460fc30463ad9.tar.gz sonarqube-0f24fd42a5a3acc63fb0c3702f0460fc30463ad9.zip |
SONAR-3529 Improve rendering of text areas in property sets
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/settings/_type_TEXT.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_type_TEXT.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_type_TEXT.html.erb index d5722465b93..414175775dc 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_type_TEXT.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/settings/_type_TEXT.html.erb @@ -1 +1 @@ -<textarea rows="5" cols="<%= (defined? size) ? size : 80 -%>" class="width100" name="<%= name -%>" id="<%= id -%>"><%= h value if value -%></textarea>
\ No newline at end of file +<textarea rows="5" cols="<%= (defined? size) ? size : 80 -%>" class="<%= (defined? size) ? '' : 'width100' -%>" name="<%= name -%>" id="<%= id -%>"><%= h value if value -%></textarea>
\ No newline at end of file |