1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 05:43:41 +00:00

open install extension in new tab (#13775)

This commit is contained in:
Nick Krantz
2025-03-17 10:23:00 -05:00
committed by GitHub
parent 14c6d97fd1
commit 55741984a7

View File

@@ -1,4 +1,6 @@
<div class="tw-text-center" *ngIf="shouldShow$ | async"> <div class="tw-text-center" *ngIf="shouldShow$ | async">
<p class="tw-mb-0">{{ "doNotHaveExtension" | i18n }}</p> <p class="tw-mb-0">{{ "doNotHaveExtension" | i18n }}</p>
<a bitLink [href]="webStoreUrl">{{ "installExtension" | i18n }}</a> <a bitLink [href]="webStoreUrl" target="_blank" rel="noreferrer">
{{ "installExtension" | i18n }}
</a>
</div> </div>