Forum Discussion
Mictosoft Teams chat window crashes when chatbot conversation is opened
Hi RobKal
I am in the same boat as you, the issue seems to be related to a recent Teams update. It seems to occur for us when an adaptive card sent via Power Automate has a URL actionable button or a Power Automate flow is waiting on an action from an adaptive card sent to Microsoft teams.
I currently have a support ticket open, have done for quite a few weeks now and it is currently in a "we are investigating" state.
- Sid UppalJan 13, 2023
Microsoft
Hello,
I am from the Teams product team. Can some of you please share some sample Adaptive Cards here with which you are able to reproduce the issue?
Thx
- Tim_OpieJan 16, 2023Copper Contributor
Here is the whole flow with adaptive card. The last condition just posts a message to a Team's chat and records the result in a SharePoint list.
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "WFH Reminder",
"id": "Title",
"spacing": "Medium",
"horizontalAlignment": "Center",
"size": "ExtraLarge",
"weight": "Bolder",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "Are you working from home today?",
"id": "acPollQuestion"
},
{
"type": "Input.ChoiceSet",
"placeholder": "Are you working from home today?",
"choices": [
{
"title": "Yes",
"value": "Yes"
},
{
"title": "No",
"value": "No"
},
],
"id": "acPollChoices",
"style": "expanded"
}
],
"actions": [
{
"type": "Action.Submit",
"title": "Submit",
"id": "btnSubmit"
}
]
} - NebucadnezaJan 13, 2023Copper Contributor
Sid Uppal i dont use adaptive cards.
I just use send Chat message as flow bot in power Automate.
When Ever the flow sends a new message as flow bot, the Teams Chat and call Icon go unresponsive.
I reworked my flow todays so instead of a message, the flow sends an activity into the feed. After some testing it seems this doesnt Breaks teams
- jofri-msftJan 14, 2023
Microsoft
Hi,
I am trying to repro this behavior but it is working for me. Are you sending the message in a chat with the bot or a group chat or meeting chat?
Are you clicking on the a notification for the message or just clicking on the chat where the message was sent?
Since KeithMcC mentioned URL actionable I was sending this card to try to repro
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "This card's action will open a URL"
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "Action.OpenUrl",
"url": "https://adaptivecards.io"
}
]
}