fingerprint phrase article

This commit is contained in:
Kyle Spearrin 2018-11-16 11:15:16 -05:00
parent 1e7c3c058c
commit 87d205d472
1 changed files with 3 additions and 2 deletions

View File

@ -141,11 +141,12 @@ export class AppComponent implements OnInit {
const fingerprint = await this.cryptoService.getFingerprint( const fingerprint = await this.cryptoService.getFingerprint(
await this.userService.getUserId()); await this.userService.getUserId());
const result = await this.platformUtilsService.showDialog( 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('fingerprintPhrase'), this.i18nService.t('learnMore'),
this.i18nService.t('close')); this.i18nService.t('close'));
if (result) { if (result) {
this.platformUtilsService.launchUri('https://help.bitwarden.com'); this.platformUtilsService.launchUri(
'https://help.bitwarden.com/article/fingerprint-phrase/');
} }
break; break;
case 'openPasswordHistory': case 'openPasswordHistory':