Skip to content

Commit

Permalink
[NOISSUE]
Browse files Browse the repository at this point in the history
fix default value
  • Loading branch information
jj committed Mar 7, 2019
1 parent 98ed176 commit ab57ae1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class JsonSchemaBuilderService {
description: it['helpText'],
type : it['displayType']]
if (it['displayType'] == 'boolean') {
property['default'] = (Boolean)(it['defaultValue'])
property['default'] = Boolean.valueOf(it['defaultValue'])
} else {
property['default'] = it['defaultValue']
}
Expand Down

0 comments on commit ab57ae1

Please sign in to comment.