-
-
Notifications
You must be signed in to change notification settings - Fork 24
Closed
Description
I would like to parse checkboxes entries and store them in an array.
I currently have an issue form containing this snippet 👇
- type: checkboxes
id: fav_frameworks
attributes:
label: What are your favourite frameworks ?
options:
- label: React.js
- label: jQuery
- label: Express
- label: Angular
- label: Vue.js
- label: ASP.NET Core
- label: Flask
- label: ASP.NET
- label: Django
- label: Spring
- label: Angular.js
- label: Laravel
- label: Ruby on Rails
- label: Gatsby
- label: FastAPI
- label: Symfony
- label: Svelte
- label: DrupalAnd would like the output to be similar to:
{
"fav_frameworks": ["Laravel", "Svelte"]
}The current behaviour would produces this:
{
"laravel": true,
"svelte": true,
}Metadata
Metadata
Assignees
Labels
No labels