I am encountering an error where I am trying to open an href link in a new tab window. The error message says "Attribute is allowed only when 'href' is present."
Is there a more efficient solution to achieve this using Angular?
<td class="grid-archive-column_name">
<a target="_blank" [href]="getTemplateHref(item.VersionKey)">{{item.TemplateName}}</a>
</td>