diff --git a/packages/marble-checkbox-group/src/CheckboxGroup.js b/packages/marble-checkbox-group/src/CheckboxGroup.js index 02fff2a..8185c90 100644 --- a/packages/marble-checkbox-group/src/CheckboxGroup.js +++ b/packages/marble-checkbox-group/src/CheckboxGroup.js @@ -27,14 +27,14 @@ CheckboxGroup.STATE = { label: Config.string(), value: Config.string(), }) - ).required(), + ), /** * The name param used on each radio * @type {?String} * @default undefined */ - name: Config.string().required(), + name: Config.string(), /** * The style of the radio group diff --git a/packages/marble-checkbox-group/src/CheckboxGroup.soy b/packages/marble-checkbox-group/src/CheckboxGroup.soy index c396147..2f5c218 100644 --- a/packages/marble-checkbox-group/src/CheckboxGroup.soy +++ b/packages/marble-checkbox-group/src/CheckboxGroup.soy @@ -4,22 +4,24 @@ * This renders the component's whole content. */ {template .render} - {@param items: list>} + {@param? items: list>} {@param? name: string} {@param? style: string}