Subject: | Bad sample YAML in HTML::FormFu::Element::Checkboxgroup |
Sample YAML reads-
---
elements:
- type: Checkboxgroup
name: subjects
options:
- 'Math'
- 'Science'
- 'English'
But that's broken. Should be something more like-
---
elements:
- type: Checkboxgroup
name: subjects
options:
- [ 'math', 'Math' ]
- [ 'sci', 'Science' ]
- [ 'en', 'English' ]
Thanks for the great kit!
-Ashley