From 87d205d472339853d4f9b726c86ab1264fed60af Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 16 Nov 2018 11:15:16 -0500 Subject: [PATCH] fingerprint phrase article --- src/app/app.component.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 3deb9385a1..e5cd7156cc 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -141,11 +141,12 @@ export class AppComponent implements OnInit { const fingerprint = await this.cryptoService.getFingerprint( await this.userService.getUserId()); const result = await this.platformUtilsService.showDialog( - this.i18nService.t('yourAccountsFingerprint') + ': ' + fingerprint.join('-'), + this.i18nService.t('yourAccountsFingerprint') + ':\n' + fingerprint.join('-'), this.i18nService.t('fingerprintPhrase'), this.i18nService.t('learnMore'), this.i18nService.t('close')); if (result) { - this.platformUtilsService.launchUri('https://help.bitwarden.com'); + this.platformUtilsService.launchUri( + 'https://help.bitwarden.com/article/fingerprint-phrase/'); } break; case 'openPasswordHistory':