mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
Change ngZone from private to protected (#567)
* Change ngZone from private to protected * Remove unneeded file
This commit is contained in:
parent
920ec05fbb
commit
78429aa720
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user