1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 22:33:35 +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

@@ -52,7 +52,7 @@ export class LockComponent implements OnInit {
protected storageService: StorageService, protected vaultTimeoutService: VaultTimeoutService,
protected environmentService: EnvironmentService, protected stateService: StateService,
protected apiService: ApiService, private logService: LogService,
private keyConnectorService: KeyConnectorService, private ngZone: NgZone) { }
private keyConnectorService: KeyConnectorService, protected ngZone: NgZone) { }
async ngOnInit() {
this.pinSet = await this.vaultTimeoutService.isPinLockSet();