rsanchez
2017-03-10 6078e6018ca05bcc0203241dc44071a59cf5e78c
securis/src/main/webapp/src/app/login.form.component.ts
....@@ -25,7 +25,9 @@
2525
2626 public login() {
2727 this.userService.login(this.data.username, this.data.password).subscribe(
28
- token => this.router.navigateByUrl("packs"),
28
+ token => {
29
+ this.router.navigateByUrl("packs");
30
+ },
2931 errMsg => this.toaster.error(errMsg, 'Login error'));
3032 }
3133