diff --git a/src/_store/account.module.js b/src/_store/account.module.js index 677f97f..1dec598 100644 --- a/src/_store/account.module.js +++ b/src/_store/account.module.js @@ -302,7 +302,7 @@ const mutations = { restoreRequest(state, systemConfigs) { state.status = Object.assign({}, state.status, {restoring: true}); - systemConfigs.restoringInProgress = true; + systemConfigs.restoreInProgress = true; }, restoreSuccess(state, systemConfigs) { state.status = Object.assign({}, state.status, {restoring: false}); @@ -310,7 +310,7 @@ const mutations = { }, restoreFailure(state, systemConfigs, error) { state.status = Object.assign({}, state.status, {restoring: false}); - systemConfigs.restoringInProgress = false; + systemConfigs.restoreInProgress = false; console.log('restore failed: ' + JSON.stringify(error)); }, diff --git a/src/_store/system.module.js b/src/_store/system.module.js index e3a5fef..61bd092 100644 --- a/src/_store/system.module.js +++ b/src/_store/system.module.js @@ -22,7 +22,7 @@ const state = { promoCodePolicy: null, requireSendMetrics: null, awaitingRestore: false, - restoringInProgress: false, + restoreInProgress: false, support: {}, securityLevels: null, jarVersion: null, diff --git a/src/auth/RestorePage.vue b/src/auth/RestorePage.vue index b9efe9f..038baa0 100644 --- a/src/auth/RestorePage.vue +++ b/src/auth/RestorePage.vue @@ -5,7 +5,7 @@
-
+
{{ messages.message_restore_not_applicable }}
{{ messages.message_back_to_root }}