From 78429aa7201989ad74a9ca36cc6832fcce0d4aee Mon Sep 17 00:00:00 2001 From: Thomas Rittson <31796059+eliykat@users.noreply.github.com> Date: Mon, 29 Nov 2021 09:52:23 +1000 Subject: [PATCH] Change ngZone from private to protected (#567) * Change ngZone from private to protected * Remove unneeded file --- .DS_Store | Bin 8196 -> 0 bytes angular/src/components/lock.component.ts | 2 +- angular/src/components/login.component.ts | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 .DS_Store diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 81c71ba84a8b33ec0837f10bd577f8d663049ce4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8196 zcmeHMJ#Q015S_IxFv3zSs)z*X3TmVjP#=-`1(6#llK4Y0k}qc^HuV)Wh>8YLAd-S2 z6@rEui60Q9Nf`z42lxrR*# zZFD8Ud2WTM`H=`{FrUVI8(aM}nG~2hpbn@5>VP_+4yXhFiUZiQIhqywzRPN_4yXhF zr33tYh|m~gkC{XJ=s;(W0Kf)@ZQ#1i7r@A4>@jnQ48pjnKsVL+BZhI)F&=qd>@job zrjzl9592Eve?l>~I@XUYolNXddv!n^C^`^fs6h{CkDk+1oZq{zUxm3O?R0wMw1+YN zsy+Jf@%v+$A6%KAjDmLqPwlt#=DaSAXhuCzomReJ^(98A;m5OEZ{Ir&1y-)4nkDqO zhYhduf)1%qDGg{S_0&IkJpm)s^K&Zn2v)AAnpLW2m-caIW;CW9%qg1xx5z`Gw`^hIJ;P1pe#`HSL#^<$S0m*}glkBGyRKTuBv2=(vB$ zI+`?uBSWZ}(m_E>?V?}C3H6*#*XDW(YlWJw;t5^#&#bF~yH)(;n3FeQF4Xb$&iY)( zVs2Q!EHCQTc3j;Oc$@EZX52x9;M diff --git a/angular/src/components/lock.component.ts b/angular/src/components/lock.component.ts index 2262895c058..b192ce6c4a1 100644 --- a/angular/src/components/lock.component.ts +++ b/angular/src/components/lock.component.ts @@ -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(); diff --git a/angular/src/components/login.component.ts b/angular/src/components/login.component.ts index eb2678848ae..34c0b8fd00d 100644 --- a/angular/src/components/login.component.ts +++ b/angular/src/components/login.component.ts @@ -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); }