Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kewde committed Jul 24, 2018
1 parent 0cb6d6e commit 078017f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/modals/createwallet/createwallet.component.ts
Expand Up @@ -286,7 +286,7 @@ export class CreateWalletComponent implements OnDestroy {
@HostListener('window:keydown', ['$event'])
keyDownEvent(event: any) {
if (event.keyCode === 13) {
if(this.step < 7) {
if (this.step < 7) {
this.nextStep();
} else {
this.dialogRef.close()
Expand Down

0 comments on commit 078017f

Please sign in to comment.