mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +00:00
Update jslib (#1176)
* Update jslib * Update component constructors * Update jslib
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: f4c66b2c8c...78429aa720
@@ -43,11 +43,11 @@ export class LockComponent extends BaseLockComponent implements OnDestroy {
|
|||||||
storageService: StorageService, vaultTimeoutService: VaultTimeoutService,
|
storageService: StorageService, vaultTimeoutService: VaultTimeoutService,
|
||||||
environmentService: EnvironmentService, stateService: StateService,
|
environmentService: EnvironmentService, stateService: StateService,
|
||||||
apiService: ApiService, private route: ActivatedRoute,
|
apiService: ApiService, private route: ActivatedRoute,
|
||||||
private broadcasterService: BroadcasterService, private ngZone: NgZone,
|
private broadcasterService: BroadcasterService, ngZone: NgZone,
|
||||||
logService: LogService, keyConnectorService: KeyConnectorService) {
|
logService: LogService, keyConnectorService: KeyConnectorService) {
|
||||||
super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService,
|
super(router, i18nService, platformUtilsService, messagingService, userService, cryptoService,
|
||||||
storageService, vaultTimeoutService, environmentService, stateService, apiService, logService,
|
storageService, vaultTimeoutService, environmentService, stateService, apiService, logService,
|
||||||
keyConnectorService);
|
keyConnectorService, ngZone);
|
||||||
}
|
}
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
|
|||||||
@@ -45,10 +45,10 @@ export class LoginComponent extends BaseLoginComponent implements OnDestroy {
|
|||||||
platformUtilsService: PlatformUtilsService, stateService: StateService,
|
platformUtilsService: PlatformUtilsService, stateService: StateService,
|
||||||
environmentService: EnvironmentService, passwordGenerationService: PasswordGenerationService,
|
environmentService: EnvironmentService, passwordGenerationService: PasswordGenerationService,
|
||||||
cryptoFunctionService: CryptoFunctionService, storageService: StorageService,
|
cryptoFunctionService: CryptoFunctionService, storageService: StorageService,
|
||||||
private broadcasterService: BroadcasterService, private ngZone: NgZone,
|
private broadcasterService: BroadcasterService, ngZone: NgZone,
|
||||||
private messagingService: MessagingService, logService: LogService) {
|
private messagingService: MessagingService, logService: LogService) {
|
||||||
super(authService, router, platformUtilsService, i18nService, stateService, environmentService,
|
super(authService, router, platformUtilsService, i18nService, stateService, environmentService,
|
||||||
passwordGenerationService, cryptoFunctionService, storageService, logService);
|
passwordGenerationService, cryptoFunctionService, storageService, logService, ngZone);
|
||||||
super.onSuccessfulLogin = () => {
|
super.onSuccessfulLogin = () => {
|
||||||
return syncService.fullSync(true);
|
return syncService.fullSync(true);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user