mirror of
https://github.com/bitwarden/jslib
synced 2025-12-15 15:53:51 +00:00
Change ngZone from private to protected (#567)
* Change ngZone from private to protected * Remove unneeded file
This commit is contained in:
@@ -52,7 +52,7 @@ export class LockComponent implements OnInit {
|
|||||||
protected storageService: StorageService, protected vaultTimeoutService: VaultTimeoutService,
|
protected storageService: StorageService, protected vaultTimeoutService: VaultTimeoutService,
|
||||||
protected environmentService: EnvironmentService, protected stateService: StateService,
|
protected environmentService: EnvironmentService, protected stateService: StateService,
|
||||||
protected apiService: ApiService, private logService: LogService,
|
protected apiService: ApiService, private logService: LogService,
|
||||||
private keyConnectorService: KeyConnectorService, private ngZone: NgZone) { }
|
private keyConnectorService: KeyConnectorService, protected ngZone: NgZone) { }
|
||||||
|
|
||||||
async ngOnInit() {
|
async ngOnInit() {
|
||||||
this.pinSet = await this.vaultTimeoutService.isPinLockSet();
|
this.pinSet = await this.vaultTimeoutService.isPinLockSet();
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ export class LoginComponent extends CaptchaProtectedComponent implements OnInit
|
|||||||
protected stateService: StateService, environmentService: EnvironmentService,
|
protected stateService: StateService, environmentService: EnvironmentService,
|
||||||
protected passwordGenerationService: PasswordGenerationService,
|
protected passwordGenerationService: PasswordGenerationService,
|
||||||
protected cryptoFunctionService: CryptoFunctionService, private storageService: StorageService,
|
protected cryptoFunctionService: CryptoFunctionService, private storageService: StorageService,
|
||||||
protected logService: LogService, private ngZone: NgZone) {
|
protected logService: LogService, protected ngZone: NgZone) {
|
||||||
super(environmentService, i18nService, platformUtilsService);
|
super(environmentService, i18nService, platformUtilsService);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user