aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Gageot <david@gageot.net>2012-07-06 12:49:55 +0200
committerDavid Gageot <david@gageot.net>2012-07-06 12:50:01 +0200
commitd1454524c4c8ae3722d75ea34fa36f4420465218 (patch)
tree07380fc439c76442ccc2f8286e34bf79e83aef72
parentfdd726cbd6058b17646ee99f22647dc096d07e7a (diff)
downloadsonarqube-d1454524c4c8ae3722d75ea34fa36f4420465218.tar.gz
sonarqube-d1454524c4c8ae3722d75ea34fa36f4420465218.zip
SONAR-3432 show input field for lists
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/helpers/rules_configuration_helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/helpers/rules_configuration_helper.rb b/sonar-server/src/main/webapp/WEB-INF/app/helpers/rules_configuration_helper.rb
index f287fd20330..9919f45db5d 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/helpers/rules_configuration_helper.rb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/helpers/rules_configuration_helper.rb
@@ -34,6 +34,8 @@ module RulesConfigurationHelper
return PropertyType::TYPE_INTEGER if type == PARAM_TYPE_INTEGER_LIST
return PropertyType::TYPE_BOOLEAN if type == PARAM_TYPE_BOOLEAN
return PropertyType::TYPE_STRING if type == PARAM_TYPE_REGEXP
+
+ PropertyType::TYPE_STRING
end
def readable_type(type)