summaryrefslogtreecommitdiff
path: root/src/store/modules/HardwareStatus/FanStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/HardwareStatus/FanStore.js')
-rw-r--r--src/store/modules/HardwareStatus/FanStore.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/store/modules/HardwareStatus/FanStore.js b/src/store/modules/HardwareStatus/FanStore.js
index 792c5ad1..9bc84280 100644
--- a/src/store/modules/HardwareStatus/FanStore.js
+++ b/src/store/modules/HardwareStatus/FanStore.js
@@ -77,8 +77,8 @@ const FanStore = {
async getLimits({ commit }) {
return await api
.get('/redfish/v1/Chassis/SILA_Baseboard/Thermal')
- .then(({ data: { Temperatures = [] } }) => {
- commit('setLimits', Temperatures);
+ .then(({ data: { Fans = [] } }) => {
+ commit('setLimits', Fans);
})
.catch((error) => console.log(error));
},