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.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/modules/HardwareStatus/ServerLedStore.js b/src/store/modules/HardwareStatus/ServerLedStore.js
index d4af0648..cb36e51b 100644
--- a/src/store/modules/HardwareStatus/ServerLedStore.js
+++ b/src/store/modules/HardwareStatus/ServerLedStore.js
@@ -37,11 +37,11 @@ const ServerLedStore = {
commit('setIndicatorLedActiveState', !payload);
if (payload) {
throw new Error(
- i18n.t('pageInventory.toast.errorEnableIdentifyLed'),
+ i18n.global.t('pageInventory.toast.errorEnableIdentifyLed'),
);
} else {
throw new Error(
- i18n.t('pageInventory.toast.errorDisableIdentifyLed'),
+ i18n.global.t('pageInventory.toast.errorDisableIdentifyLed'),
);
}
});