Last active
January 31, 2020 19:42
-
-
Save maxharrison/72b955a3f93e9c6eaf1d787a647f36ec to your computer and use it in GitHub Desktop.
facets suggestion
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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