From ca981a5cf99f016be02dddc090c2927dd9997c42 Mon Sep 17 00:00:00 2001 From: Vitalii Lysak Date: Mon, 22 Aug 2022 17:31:25 +0300 Subject: SILABMC-271: add max reading as chart max --- src/store/modules/HardwareStatus/FanStore.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/store/modules') 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)); }, -- cgit v1.2.3