Hello everyone,
A recurring ask in PVA is to be able to create a vertical list of quick reply instead of the horizontal list.
If you create a regular quick reply list with many values, you will get a scrollbar like this:

This is not ideal as you can't really see all the options unless you scroll all the way. The workaround is to create a simple JSON payload in an adaptive card:
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.5",
"body": [
{
"type": "Container",
"items": [
{
"type": "ActionSet",
"actions": [
{
"type": "Action.Submit",
"title": "Customer Support",
"data": "Customer Support"
},
{
"type": "Action.Submit",
"title": "Knowledge Base",
"data": "Knowledge Base"
},
{
"type": "Action.Submit",
"title": "FAQ",
"data": "FAQ"
},
{
"type": "Action.Submit",
"title": "Store Hours",
"data": "Store Hours"
}
]
}
]
}
]
}
which will generate a list of links like this (much easier to read / use):
