Fix login error display
This commit is contained in:
parent
f88453e233
commit
2345e13853
1 changed files with 6 additions and 5 deletions
|
@ -71,6 +71,12 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni
|
|||
ngOnInit () {
|
||||
const snapshot = this.route.snapshot
|
||||
|
||||
// Avoid undefined errors when accessing form error properties
|
||||
this.buildForm({
|
||||
username: LOGIN_USERNAME_VALIDATOR,
|
||||
password: LOGIN_PASSWORD_VALIDATOR
|
||||
})
|
||||
|
||||
this.serverConfig = snapshot.data.serverConfig
|
||||
|
||||
if (snapshot.queryParams.externalAuthToken) {
|
||||
|
@ -82,11 +88,6 @@ export class LoginComponent extends FormReactive implements OnInit, AfterViewIni
|
|||
this.externalAuthError = true
|
||||
return
|
||||
}
|
||||
|
||||
this.buildForm({
|
||||
username: LOGIN_USERNAME_VALIDATOR,
|
||||
password: LOGIN_PASSWORD_VALIDATOR
|
||||
})
|
||||
}
|
||||
|
||||
ngAfterViewInit () {
|
||||
|
|
Loading…
Add table
Reference in a new issue