Checkbox groups now return an array of booleans

This commit is contained in:
Keegan
2016-06-15 14:20:35 -07:00
parent cabee3ae0b
commit a0335be710
7 changed files with 44 additions and 59 deletions
+2 -6
View File
@@ -121,13 +121,9 @@ module.exports = [
{
"type": "checkboxgroup",
"messageKey": "checkboxgroup-test",
"defaultValue": ["quote' \"test", "two"],
"defaultValue": [0, 1, 0],
"label": "Checkbox Group",
"options": [
{ "label": "First thing", "value": "three" },
{ "label": "Another thing", "value": "two" },
{ "label": "Final thing", "value": "three" }
]
"options": [ "First thing", "Another thing", "Final thing" ]
},
{
"type": "select",