I’ve got some parameters I’m using to switch between two different sets of values for a component I’ve created, but for some reason whenever I enter into the component, my UI controls look like this (notice the “Category Type” field):
When I click on the back arrow, the control appears as it’s supposed to (and works properly, too):
Here is my parameters JSON:
{
"cat" : {
"label": "Category Type",
"type": "choose",
"options": [
{
"value": {
"color": "#a6380a",
"title": "Foundations for Victory"
},
"label": "Foundations"
},
{
"value": {
"color": "#f26321",
"title": "Areas of Restoration"
},
"label": "Restoration"
}
]
},
"title" : {
"type" : "text",
"label" : "Page Title",
"initial" : "{{dc:post:title}}"
},
"bg" : {
"type" : "image",
"label" : "Background Image",
"initial" : "3952:full"
}
}
Is this a bug or are my parameters somehow messed up?