diff --git a/Breeze.UI/package.json b/Breeze.UI/package.json index 1007eef..732c785 100644 --- a/Breeze.UI/package.json +++ b/Breeze.UI/package.json @@ -1,7 +1,7 @@ { "name": "Breeze", "description": "Graphical User Interface for Breeze Wallet.", - "version": "0.2.1", + "version": "0.3.0", "author": { "name": "Stratis Group", "email": "info@stratisplatform.com" diff --git a/Breeze.UI/src/app/setup/create/show-mnemonic/show-mnemonic.component.html b/Breeze.UI/src/app/setup/create/show-mnemonic/show-mnemonic.component.html index 950ff74..6cfc866 100644 --- a/Breeze.UI/src/app/setup/create/show-mnemonic/show-mnemonic.component.html +++ b/Breeze.UI/src/app/setup/create/show-mnemonic/show-mnemonic.component.html @@ -1,11 +1,6 @@
-

- - - -

Secret words

Please write down your secret words and password.
You will need both to recover your wallet in the future.

@@ -15,10 +10,11 @@

Secret words

- +
+
diff --git a/Breeze.UI/src/app/setup/create/show-mnemonic/show-mnemonic.component.ts b/Breeze.UI/src/app/setup/create/show-mnemonic/show-mnemonic.component.ts index c36249d..1b532ca 100644 --- a/Breeze.UI/src/app/setup/create/show-mnemonic/show-mnemonic.component.ts +++ b/Breeze.UI/src/app/setup/create/show-mnemonic/show-mnemonic.component.ts @@ -40,8 +40,8 @@ export class ShowMnemonicComponent implements OnInit, OnDestroy { this.router.navigate(['/setup/create/confirm-mnemonic'], { queryParams : { name: this.newWallet.name, mnemonic: this.newWallet.mnemonic, password: this.newWallet.password }}); } - public onBackClicked() { - this.router.navigate(['/setup/create']); + public onCancelClicked() { + this.router.navigate(['']); } ngOnDestroy() {