mirror of
https://github.com/bitwarden/browser
synced 2026-02-11 14:04:03 +00:00
* update desktop and browser swal references to use CL * rename bit-dialog-close * share fingerprint dialog between desktop and browser * apply code review * format fingerprint in template * apply code review * fix button color * fix button types * update var names * close awaitDesktop dialog on success AND error * add DialogService to NativeMessageHandlerService deps * wrap browser message dialogs in ngZone.run * wrap native messaging handler in ngzone.run * apply code review * fix async ngzone --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
24 lines
741 B
HTML
24 lines
741 B
HTML
<bit-simple-dialog>
|
|
<i bitDialogIcon class="bwi bwi-info-circle tw-text-3xl" aria-hidden="true"></i>
|
|
<span bitDialogTitle>{{ "yourAccountsFingerprint" | i18n }}:</span>
|
|
<span bitDialogContent>
|
|
<strong>{{ data.fingerprint.join("-") }}</strong>
|
|
</span>
|
|
<ng-container bitDialogFooter>
|
|
<a
|
|
bitButton
|
|
href="https://bitwarden.com/help/fingerprint-phrase/"
|
|
target="_blank"
|
|
rel="noopener"
|
|
buttonType="primary"
|
|
bitDialogClose
|
|
>
|
|
{{ "learnMore" | i18n }}
|
|
<i class="bwi bwi-external-link bwi-fw" aria-hidden="true"></i>
|
|
</a>
|
|
<button bitButton type="button" buttonType="secondary" bitDialogClose>
|
|
{{ "close" | i18n }}
|
|
</button>
|
|
</ng-container>
|
|
</bit-simple-dialog>
|