summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitalii Lysak <v.lysak@dunice.net>2022-08-30 13:21:11 +0300
committerVitalii Lysak <v.lysak@dunice.net>2022-08-30 13:21:11 +0300
commit0d8c6e22cb9ee56c62fe53f9aefa2a00a37fbf20 (patch)
treea30f2e131b552cbd3efdd78545c67a4a9cc03e83
parenta7830e9bfb3e0d3988765301f84945328dc51434 (diff)
downloadwebui-vue-sila-fan-debug.tar.xz
change getFanInfo reqsila-fan-debug
-rw-r--r--src/store/modules/HardwareStatus/FanStore.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/store/modules/HardwareStatus/FanStore.js b/src/store/modules/HardwareStatus/FanStore.js
index 69e18532..34f75acc 100644
--- a/src/store/modules/HardwareStatus/FanStore.js
+++ b/src/store/modules/HardwareStatus/FanStore.js
@@ -114,7 +114,7 @@ const FanStore = {
},
async getFanInfo({ commit }) {
return await api
- .get('/redfish/v1/Chassis/chassis/Thermal')
+ .get('/redfish/v1/Chassis/SILA_Baseboard/Thermal')
.then(({ data: { Fans = [] } }) => commit('setFanInfo', Fans))
.catch((error) => console.log(error));
},