Skip to content

Instantly share code, notes, and snippets.

@maxharrison
Last active January 31, 2020 19:42
Show Gist options
  • Save maxharrison/72b955a3f93e9c6eaf1d787a647f36ec to your computer and use it in GitHub Desktop.
Save maxharrison/72b955a3f93e9c6eaf1d787a647f36ec to your computer and use it in GitHub Desktop.
facets suggestion
# current
"options" : {
"nsfw": {
"type": "radio",
"label": "Mature Content",
"options": [
{"value": "true", "label": "Visible", "checked": false, "default": false},
{"value": "false", "label": "Hidden", "checked": true, "default": true}
]
}
}
# my suggestion
"options" : {
"nsfw": {
"type": "radio",
"label": "Mature Content",
"options": {
"true": {"label": "Visible", "checked": false, "default": false},
"false": {"label": "Hidden", "checked": true, "default": true}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment