Forum Discussion
Karunakaran_GN
Mar 21, 2023Copper Contributor
Adaptive card "isEnabled" not working on MS Teams
I have used below adaptive card JSON in my Power Virtual Agent(PVA) bot, 'isEnabled' flag works on PVA but not on MS Teams. Please suggest.
{
"type": "AdaptiveCard",
"version": "1.5",
"body": [
{
"type": "TextBlock",
"text": "Disabled Execute Button",
"wrap": true
}
],
"actions": [
{
"type": "Action.Execute",
"title": "Enabled"
},
{
"type": "Action.Execute",
"title": "Disabled",
"isEnabled": false
}
]
}
PVA:
MS Teams:
- Meghana-MSFTMicrosoftThank you for reporting this issue, we will check this and get back to you.
- Meghana-MSFTMicrosoft
Karunakaran_GN - Teams Does not support Card action button styling in cards. This is by design.
- BorisMikCopper Contributor
Meghana-MSFT Is there an official document which defines what's supported and what's not
TIA