Skip to content
This repository has been archived by the owner on Jun 17, 2022. It is now read-only.

Commit

Permalink
Change ngZone from private to protected (#567)
Browse files Browse the repository at this point in the history
* Change ngZone from private to protected

* Remove unneeded file
  • Loading branch information
eliykat committed Nov 28, 2021
1 parent 920ec05 commit 78429aa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion angular/src/components/lock.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion angular/src/components/login.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit 78429aa

Please sign in to comment.