From 6078e6018ca05bcc0203241dc44071a59cf5e78c Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Fri, 10 Mar 2017 16:33:31 +0000
Subject: [PATCH] #3527 fix - Customizing packs listing

---
 securis/src/main/webapp/src/app/login.form.component.ts |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/securis/src/main/webapp/src/app/login.form.component.ts b/securis/src/main/webapp/src/app/login.form.component.ts
index 0994685..972ac97 100644
--- a/securis/src/main/webapp/src/app/login.form.component.ts
+++ b/securis/src/main/webapp/src/app/login.form.component.ts
@@ -25,7 +25,9 @@
 
   public login() {
     this.userService.login(this.data.username, this.data.password).subscribe(
-      token => this.router.navigateByUrl("packs"),
+      token => {
+        this.router.navigateByUrl("packs");
+      },
       errMsg => this.toaster.error(errMsg, 'Login error'));
   }
 

--
Gitblit v1.3.2