Hello
I have a Power Automate that sends an adaptive card to a user to provide their inputs. One of the input fields is a choice set and there is a possibility that the user would need to select all the options. While testing the card, I noticed that I am not able to select more than 7 options. Is there a limit in terms of size of the input?
Below is a snippet of the card - the choice set has 12 options:
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"weight": "Bolder",
"text": "Select the required Access:",
"wrap": true
},
{
"type": "Input.ChoiceSet",
"choices": [
{
"title": "Choice 1",
"value": "Choice 1"
},
{
"title": "Choice 2",
"value": "Choice 2"
},
{
"title": "Choice 3",
"value": "Choice 3"
},
{
"title": "Choice 4",
"value": "Choice 4"
},
{
"title": "Choice 5",
"value": "Choice 5"
},
{
"title": "Choice 6",
"value": "Choice 6"
},
{
"title": "Choice 7",
"value": "Choice 7"
},
{
"title": "Choice 8",
"value": "Choice 8"
},
{
"title": "Choice 5",
"value": "Choice 5"
},
{
"title": "Choice 6",
"value": "Choice 6"
},
{
"title": "Choice 7",
"value": "Choice 7"
},
{
"title": "Choice 8",
"value": "Choice 8"
}
],
"id": "AccessList",
"style": "expanded",
"isMultiSelect": true,
"isRequired": true,
"errorMessage": "This is a required field."
}
]
}