Forum Discussion

Karunakaran_GN's avatar
Karunakaran_GN
Copper Contributor
Mar 21, 2023

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:
 
 

Resources