mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-13 10:14:18 +01:00
update jslib
This commit is contained in:
parent
06a95f5197
commit
6858ee8624
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 85587e06728aabd118f3cb6b06110be92202049b
|
||||
Subproject commit 45341ec408319cbf69a4772e503a3991ae770a49
|
@ -8,6 +8,7 @@ import { ApiService } from 'jslib/abstractions/api.service';
|
||||
import { AuthService } from 'jslib/abstractions/auth.service';
|
||||
import { CryptoService } from 'jslib/abstractions/crypto.service';
|
||||
import { I18nService } from 'jslib/abstractions/i18n.service';
|
||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||
import { StateService } from 'jslib/abstractions/state.service';
|
||||
|
||||
import { RegisterComponent as BaseRegisterComponent } from 'jslib/angular/components/register.component';
|
||||
@ -20,7 +21,9 @@ export class RegisterComponent extends BaseRegisterComponent {
|
||||
constructor(authService: AuthService, router: Router,
|
||||
analytics: Angulartics2, toasterService: ToasterService,
|
||||
i18nService: I18nService, cryptoService: CryptoService,
|
||||
apiService: ApiService, stateService: StateService) {
|
||||
super(authService, router, analytics, toasterService, i18nService, cryptoService, apiService, stateService);
|
||||
apiService: ApiService, stateService: StateService,
|
||||
platformUtilsService: PlatformUtilsService) {
|
||||
super(authService, router, analytics, toasterService, i18nService, cryptoService, apiService, stateService,
|
||||
platformUtilsService);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user