fix(docs-infra): lighthouse reporting links to cross-origin destinations are unsafe (#35253)

Light house was reporting in best practices that our cross origin links are a unsafe so aded rel=noopener according to light houe suggestion link to the article https://web.dev/external-anchors-use-rel-noopener/\?utm_source\=lighthouse\&utm_medium\=lr

PR Close #35253
This commit is contained in:
ajitsinghkaler 2020-02-08 18:30:42 +05:30 committed by Kara Erickson
parent 13be065ed9
commit 2d5bb26b02
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@
<div *ngFor="let resource of subCategory.resources">
<div class="c-resource" *ngIf="resource.rev">
<a class="l-flex--column resource-row-link" target="_blank" [href]="resource.url">
<a class="l-flex--column resource-row-link" rel="noopener" target="_blank" [href]="resource.url">
<div>
<h4>{{resource.title}}</h4>
<p class="resource-description">{{resource.desc || 'No Description'}}</p>