1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-13 06:43:20 +00:00

Change ngZone from private to protected (#567)

* Change ngZone from private to protected

* Remove unneeded file
This commit is contained in:
Thomas Rittson
2021-11-29 09:52:23 +10:00
committed by GitHub
parent 920ec05fbb
commit 78429aa720
3 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ export class LoginComponent extends CaptchaProtectedComponent implements OnInit
protected stateService: StateService, environmentService: EnvironmentService,
protected passwordGenerationService: PasswordGenerationService,
protected cryptoFunctionService: CryptoFunctionService, private storageService: StorageService,
protected logService: LogService, private ngZone: NgZone) {
protected logService: LogService, protected ngZone: NgZone) {
super(environmentService, i18nService, platformUtilsService);
}