How to make URLs open in new tab in adaptive cards #7995
Unanswered
mahesh58786
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
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}",
"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.
Beta Was this translation helpful? Give feedback.
All reactions