Forum Discussion

Mahesh_Kottappurath's avatar
Mahesh_Kottappurath
Copper Contributor
Oct 27, 2022

How to make URLs open in new tab in adaptive cards

 

We have created one Spfx adaptive card extension to use in Viva dashboard. We need to show some hyperlinks in the card. We have used the markdown language as shown below to show this. But the hyperlinks are opening in the same tab.

{
"type": "TextBlock",
"text": "**[${Title}](${URL})**",
"wrap": true
}

Also we tried using Action.OpenUrl as shown below. With this also the links are opening in the same tab.

"actions": [
{
"type": "Action.OpenUrl",
"title": "View More",
"url": "${URL}"
}
]

Is there way we can force the links in adaptive cards to open in new tab.


Thanks.

Resources