From 1e1b254678fa228360ca5379852d596b47dfaa1b Mon Sep 17 00:00:00 2001 From: Bruno Windels Date: Tue, 20 Oct 2020 15:26:22 +0200 Subject: [PATCH] adjust prop names --- src/domain/session/settings/SessionBackupViewModel.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/domain/session/settings/SessionBackupViewModel.js b/src/domain/session/settings/SessionBackupViewModel.js index c617e504..2fee7b82 100644 --- a/src/domain/session/settings/SessionBackupViewModel.js +++ b/src/domain/session/settings/SessionBackupViewModel.js @@ -47,12 +47,12 @@ export class SessionBackupViewModel extends ViewModel { showPhraseSetup() { this._showKeySetup = false; - this.emitChange("showKeySetup"); + this.emitChange("status"); } showKeySetup() { this._showKeySetup = true; - this.emitChange("showKeySetup"); + this.emitChange("status"); } async enterSecurityPhrase(passphrase) { @@ -67,7 +67,7 @@ export class SessionBackupViewModel extends ViewModel { this.emitChange("error"); } finally { this._isBusy = false; - this.emitChange("isBusy"); + this.emitChange(""); } } } @@ -84,7 +84,7 @@ export class SessionBackupViewModel extends ViewModel { this.emitChange("error"); } finally { this._isBusy = false; - this.emitChange("isBusy"); + this.emitChange(""); } } }