FIX: popup for recovery tool

This commit is contained in:
Gabriel Bazán 2018-03-20 11:52:30 -03:00
parent e0ea1ec1b7
commit 2179b8aeb4
1 changed files with 3 additions and 2 deletions

View File

@ -99,10 +99,11 @@ export class BitcoinCashPage {
public openRecoveryToolLink(): void {
let url = 'https://bitpay.github.io/copay-recovery/';
let optIn = true;
let title = this.translate.instant('Open the recovery tool');
let title = null;
let message = this.translate.instant('Open the recovery tool');
let okText = this.translate.instant('Open');
let cancelText = this.translate.instant('Go Back');
this.externalLinkProvider.open(url, optIn, title, null, okText, cancelText);
this.externalLinkProvider.open(url, optIn, title, message, okText, cancelText);
}
public duplicate(wallet: any) {