summaryrefslogtreecommitdiff
path: root/src/store/modules/HardwareStatus/ServerLedStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/HardwareStatus/ServerLedStore.js')
-rw-r--r--src/store/modules/HardwareStatus/ServerLedStore.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/store/modules/HardwareStatus/ServerLedStore.js b/src/store/modules/HardwareStatus/ServerLedStore.js
index 028a6f70..af228022 100644
--- a/src/store/modules/HardwareStatus/ServerLedStore.js
+++ b/src/store/modules/HardwareStatus/ServerLedStore.js
@@ -21,7 +21,7 @@ const ServerLedStore = {
.then((response) => {
commit(
'setIndicatorLedActiveState',
- response.data.LocationIndicatorActive
+ response.data.LocationIndicatorActive,
);
})
.catch((error) => console.log(error));
@@ -37,11 +37,11 @@ const ServerLedStore = {
commit('setIndicatorLedActiveState', !payload);
if (payload) {
throw new Error(
- i18n.t('pageInventory.toast.errorEnableIdentifyLed')
+ i18n.t('pageInventory.toast.errorEnableIdentifyLed'),
);
} else {
throw new Error(
- i18n.t('pageInventory.toast.errorDisableIdentifyLed')
+ i18n.t('pageInventory.toast.errorDisableIdentifyLed'),
);
}
});