diff --git a/jslib b/jslib index 621a6d15..747cd637 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit 621a6d1524a4053725a54b9688364ea97958eefa +Subproject commit 747cd6373305042640f5f0d861eda0fdeb22cab7 diff --git a/src/app/accounts/login.component.html b/src/app/accounts/login.component.html index 82becf4d..7c49805f 100644 --- a/src/app/accounts/login.component.html +++ b/src/app/accounts/login.component.html @@ -9,7 +9,7 @@
- +
diff --git a/src/app/accounts/login.component.ts b/src/app/accounts/login.component.ts index 2e66f691..237e3f57 100644 --- a/src/app/accounts/login.component.ts +++ b/src/app/accounts/login.component.ts @@ -13,7 +13,7 @@ import { EnvironmentComponent } from './environment.component'; import { AuthService } from 'jslib/abstractions/auth.service'; import { I18nService } from 'jslib/abstractions/i18n.service'; -import { SyncService } from 'jslib/abstractions/sync.service'; +import { StorageService } from 'jslib/abstractions/storage.service'; import { LoginComponent as BaseLoginComponent } from 'jslib/angular/components/login.component'; import { ModalComponent } from 'jslib/angular/components/modal.component'; @@ -27,8 +27,9 @@ export class LoginComponent extends BaseLoginComponent { constructor(authService: AuthService, router: Router, analytics: Angulartics2, toasterService: ToasterService, - i18nService: I18nService, private componentFactoryResolver: ComponentFactoryResolver) { - super(authService, router, analytics, toasterService, i18nService); + i18nService: I18nService, private componentFactoryResolver: ComponentFactoryResolver, + storageService: StorageService) { + super(authService, router, analytics, toasterService, i18nService, storageService); super.successRoute = '/tabs/dashboard'; }