@@ -20,12 +20,12 @@ export class LoginComponent implements OnInit {
2020 isLoggingIn = true ;
2121 isAuthenticating = false ;
2222
23- @ViewChild ( "initialContainer" , { read : ElementRef , static : false } ) initialContainer : ElementRef ;
24- @ViewChild ( "mainContainer" , { read : ElementRef , static : false } ) mainContainer : ElementRef ;
25- @ViewChild ( "logoContainer" , { read : ElementRef , static : false } ) logoContainer : ElementRef ;
26- @ViewChild ( "formControls" , { read : ElementRef , static : false } ) formControls : ElementRef ;
27- @ViewChild ( "signUpStack" , { read : ElementRef , static : false } ) signUpStack : ElementRef ;
28- @ViewChild ( "password" , { read : ElementRef , static : false } ) password : ElementRef ;
23+ @ViewChild ( "initialContainer" , { static : false } ) initialContainer : ElementRef ;
24+ @ViewChild ( "mainContainer" , { static : false } ) mainContainer : ElementRef ;
25+ @ViewChild ( "logoContainer" , { static : false } ) logoContainer : ElementRef ;
26+ @ViewChild ( "formControls" , { static : false } ) formControls : ElementRef ;
27+ @ViewChild ( "signUpStack" , { static : false } ) signUpStack : ElementRef ;
28+ @ViewChild ( "password" , { static : false } ) password : ElementRef ;
2929
3030 constructor ( private router : Router ,
3131 private userService : LoginService ,
0 commit comments