Hello,
How do you wrap the text in the headline of an adaptive card?

{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.1",
"body": [
{
"type": "ColumnSet",
"columns": [
{
"type": "Column",
"width": 2,
"items": [
{
"type": "TextBlock",
"text": "@{triggerOutputs()['headers']['x-ms-user-name-encoded']} requests that you review and approve or reject @{outputs('Update_file_properties')?['body/{FilenameWithExtension}']}",
"weight": "Bolder",
"size": "Large",
"spacing": "ExtraLarge",
"separator": true,
"horizontalAlignment": "Center",
"height": "stretch",
"color": "Accent"
},
{
"type": "TextBlock",
"text": "Approved By",
"wrap": true
},
{
"type": "Input.Text",
"id": "myName",
"placeholder": "Approver's full name"
},
{
"type": "TextBlock",
"text": "Email Address",
"wrap": true
},
{
"type": "Input.Text",
"id": "myEmail",
"placeholder": "abc@example.com",
"style": "Email"
},
{
"type": "TextBlock",
"text": "Approval/Reject Comments",
"wrap": true
},
{
"type": "Input.Text",
"id": "commentsId",
"placeholder": ""
}
]
}
]
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "View document",
"url": "@{variables('DocURL')}"
},
{
"type": "Action.Submit",
"title": "Approve",
"size": "Small",
"style": "positive"
},
{
"type": "Action.Submit",
"title": "Reject",
"size": "Small",
"style": "destructive"
}
]
}
Thanks,
Anne