Hi!
I was referring to this section
{
"type": "RichTextBlock",
"inlines": [
{
"type": "TextRun",
"text": "@{variables('varComments')}"
}
]
},
...so once removed your original JSON would look like:
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.0",
"body": [
{
"type": "TextBlock",
"text": "New Request",
"weight": "Bolder",
"size": "Large"
},
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": "stretch",
"items": [
{
"type": "TextBlock",
"text": "@{body('Get_user_profile_(V2)')?['displayName']}",
"weight": "Bolder",
"wrap": true
},
{
"type": "TextBlock",
"spacing": "None",
"text": "@{body('Convert_time_zone')}",
"isSubtle": true,
"wrap": true
}
]
}
]
},
{
"type": "ActionSet",
"actions": [
{
"type": "Action.OpenUrl",
"title": "Chat",
"url": "https://teams.microsoft.com/l/chat/0/0?users=@{body('Get_user_profile_(V2)')?['userPrincipalName']}"
},
{
"type": "Action.OpenUrl",
"title": "Email",
"url": "mailto:@{body('Get_user_profile_(V2)')?['mail']}"
}
]
}
]
}
Hope this helps