I want to add a hyperlink as a button in my dashboard, to open a web-interface of a 3rd party platform.
As far as I can see in DM Docs, we can only embed an HTML page in the dashboard, but it doesn't make sense as I want to open it in a different tag.
Does anyone knows if this is possible?
Something like this would be possible by using custom HTML in the web component with the following content:
<form action="https://www.w3docs.com/" method="get" target="_blank" rel="noopener noreferrer">
<button type="submit">To 3rd party</button>
</form>
But the DOM sanitizer takes out the target="_blank" part