adjust prop names

This commit is contained in:
Bruno Windels 2020-10-20 15:26:22 +02:00
parent 601bdbb25d
commit 1e1b254678

View File

@ -47,12 +47,12 @@ export class SessionBackupViewModel extends ViewModel {
showPhraseSetup() { showPhraseSetup() {
this._showKeySetup = false; this._showKeySetup = false;
this.emitChange("showKeySetup"); this.emitChange("status");
} }
showKeySetup() { showKeySetup() {
this._showKeySetup = true; this._showKeySetup = true;
this.emitChange("showKeySetup"); this.emitChange("status");
} }
async enterSecurityPhrase(passphrase) { async enterSecurityPhrase(passphrase) {
@ -67,7 +67,7 @@ export class SessionBackupViewModel extends ViewModel {
this.emitChange("error"); this.emitChange("error");
} finally { } finally {
this._isBusy = false; this._isBusy = false;
this.emitChange("isBusy"); this.emitChange("");
} }
} }
} }
@ -84,7 +84,7 @@ export class SessionBackupViewModel extends ViewModel {
this.emitChange("error"); this.emitChange("error");
} finally { } finally {
this._isBusy = false; this._isBusy = false;
this.emitChange("isBusy"); this.emitChange("");
} }
} }
} }