Fix emit for isBusy

Signed-off-by: RMidhunSuresh <rmidhunsuresh@gmail.com>
This commit is contained in:
RMidhunSuresh 2021-08-20 20:12:25 +05:30
parent 0e7a9e224c
commit 784b06d500

View file

@ -155,7 +155,7 @@ export class LoginViewModel extends ViewModel {
if (!this._loadViewModel.loading) { if (!this._loadViewModel.loading) {
this._loadViewModelSubscription = this.disposeTracked(this._loadViewModelSubscription); this._loadViewModelSubscription = this.disposeTracked(this._loadViewModelSubscription);
} }
this.emitChange("isBusy"); this._toggleBusy(false);
}) })
); );
} }