1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

Update jslib (#1176)

* Update jslib

* Update component constructors

* Update jslib
This commit is contained in:
Thomas Rittson
2021-11-29 10:21:48 +10:00
committed by GitHub
parent b83058ecab
commit b6db41c26c
3 changed files with 5 additions and 5 deletions

View File

@@ -45,10 +45,10 @@ export class LoginComponent extends BaseLoginComponent implements OnDestroy {
platformUtilsService: PlatformUtilsService, stateService: StateService,
environmentService: EnvironmentService, passwordGenerationService: PasswordGenerationService,
cryptoFunctionService: CryptoFunctionService, storageService: StorageService,
private broadcasterService: BroadcasterService, private ngZone: NgZone,
private broadcasterService: BroadcasterService, ngZone: NgZone,
private messagingService: MessagingService, logService: LogService) {
super(authService, router, platformUtilsService, i18nService, stateService, environmentService,
passwordGenerationService, cryptoFunctionService, storageService, logService);
passwordGenerationService, cryptoFunctionService, storageService, logService, ngZone);
super.onSuccessfulLogin = () => {
return syncService.fullSync(true);
};