Showing
1 changed file
with
4 additions
and
3 deletions
@@ -23,7 +23,7 @@ import { FormBuilder } from '@angular/forms'; | @@ -23,7 +23,7 @@ import { FormBuilder } from '@angular/forms'; | ||
23 | import { HttpErrorResponse } from '@angular/common/http'; | 23 | import { HttpErrorResponse } from '@angular/common/http'; |
24 | import { Constants } from '@shared/models/constants'; | 24 | import { Constants } from '@shared/models/constants'; |
25 | import { Router } from '@angular/router'; | 25 | import { Router } from '@angular/router'; |
26 | -import { ActivatedRoute } from "@angular/router"; | 26 | +import { ActivatedRoute } from '@angular/router'; |
27 | 27 | ||
28 | @Component({ | 28 | @Component({ |
29 | selector: 'tb-login', | 29 | selector: 'tb-login', |
@@ -46,8 +46,9 @@ export class LoginComponent extends PageComponent implements OnInit { | @@ -46,8 +46,9 @@ export class LoginComponent extends PageComponent implements OnInit { | ||
46 | } | 46 | } |
47 | 47 | ||
48 | ngOnInit() { | 48 | ngOnInit() { |
49 | - if (this.route.snapshot.queryParams["username"] && this.route.snapshot.queryParams["password"]) { | ||
50 | - this.loginFormGroup.setValue({username: this.route.snapshot.queryParams["username"], password: this.route.snapshot.queryParams["password"]}); | 49 | + if (this.route.snapshot.queryParams.username && this.route.snapshot.queryParams.password) { |
50 | + this.loginFormGroup.setValue({username: this.route.snapshot.queryParams.username, | ||
51 | + password: this.route.snapshot.queryParams.password}); | ||
51 | this.login(); | 52 | this.login(); |
52 | } | 53 | } |
53 | } | 54 | } |