diff --git a/src/store/modules/HardwareStatus/SystemStore.js b/src/store/modules/HardwareStatus/SystemStore.js index d1ffb54937..e276697d4d 100644 --- a/src/store/modules/HardwareStatus/SystemStore.js +++ b/src/store/modules/HardwareStatus/SystemStore.js @@ -72,7 +72,7 @@ export const SystemStore = defineStore('system', { }, async changeSystemAttentionLedState(ledState) { return await api - .patch('/api/redfish/v1/Systems/system', { + .patch('/redfish/v1/Systems/system', { Oem: { IBM: { PartitionSystemAttentionIndicator: ledState, diff --git a/src/views/HardwareStatus/Inventory/InventoryServiceIndicator.vue b/src/views/HardwareStatus/Inventory/InventoryServiceIndicator.vue index 0ab3145a82..e7f04440c9 100644 --- a/src/views/HardwareStatus/Inventory/InventoryServiceIndicator.vue +++ b/src/views/HardwareStatus/Inventory/InventoryServiceIndicator.vue @@ -150,7 +150,7 @@ function toggleIdentifyLedSwitch(ledState) { function toggleSystemAttentionLedSwitch(systemLedState) { systemStore - .changeIdentifyLedState(systemLedState) + .changeSystemAttentionLedState(systemLedState) .then((message) => successToast(message)) .catch(({ message }) => errorToast(message)); }