From d1454524c4c8ae3722d75ea34fa36f4420465218 Mon Sep 17 00:00:00 2001 From: David Gageot Date: Fri, 6 Jul 2012 12:49:55 +0200 Subject: [PATCH] SONAR-3432 show input field for lists --- .../webapp/WEB-INF/app/helpers/rules_configuration_helper.rb | 2 ++ 1 file changed, 2 insertions(+) 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) -- 2.39.5