summaryrefslogtreecommitdiff
path: root/src/store/modules
diff options
context:
space:
mode:
authorYoshie Muranaka <yoshiemuranaka@gmail.com>2020-12-02 03:38:47 +0300
committerYoshie Muranaka <yoshiemuranaka@gmail.com>2020-12-02 22:47:36 +0300
commit11bafca85ee2c3f4d4fac5f2ea6b874059099211 (patch)
treecedac65385022d1c5fb9475995de67c1d1e63ad6 /src/store/modules
parent6483544a7be8f86b37ce817b6cb7ac93db6e322a (diff)
downloadwebui-vue-11bafca85ee2c3f4d4fac5f2ea6b874059099211.tar.xz
Fix server LED switch value on error
Add error state handling in the ServerLed store to make sure the UI accurately reflects the state if there is an error. Signed-off-by: Yoshie Muranaka <yoshiemuranaka@gmail.com> Change-Id: I7f3647df9f5a32e241005eb7058a7cda1e0ba36a
Diffstat (limited to 'src/store/modules')
-rw-r--r--src/store/modules/Control/ServerLedStore.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/store/modules/Control/ServerLedStore.js b/src/store/modules/Control/ServerLedStore.js
index d7c12344..a8903e2a 100644
--- a/src/store/modules/Control/ServerLedStore.js
+++ b/src/store/modules/Control/ServerLedStore.js
@@ -27,12 +27,12 @@ const ServerLedStore = {
.catch((error) => console.log(error));
},
async saveIndicatorLedActiveState({ commit }, payload) {
+ commit('setIndicatorLedActiveState', payload);
return await api
.patch('/redfish/v1/Systems/system', {
LocationIndicatorActive: payload,
})
.then(() => {
- commit('setIndicatorLedActiveState', payload);
if (payload) {
return i18n.t('pageServerLed.toast.successServerLedOn');
} else {
@@ -41,6 +41,7 @@ const ServerLedStore = {
})
.catch((error) => {
console.log(error);
+ commit('setIndicatorLedActiveState', !payload);
if (payload) {
throw new Error(i18n.t('pageServerLed.toast.errorServerLedOn'));
} else {