Skip to content

Commit

Permalink
[SHIBUI-906]
Browse files Browse the repository at this point in the history
Replaced 'defaultValue' with 'default'.
  • Loading branch information
Bill Smith committed Nov 8, 2018
1 parent 6f44a57 commit 73b9245
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ class JsonSchemaBuilderService {
description: it['helpText'],
type : it['displayType']]
if (it['displayType'] == 'boolean') {
property['defaultValue'] = (Boolean)(it['defaultValue'])
property['default'] = (Boolean)(it['defaultValue'])
} else {
property['defaultValue'] = it['defaultValue']
property['default'] = it['defaultValue']
}
}
properties[(String) it['name']] = property
Expand Down

0 comments on commit 73b9245

Please sign in to comment.