Add thresholds for Fan sensors

Add lower/upper non-critical/critical tresholds for Fan sensors

Signed-off-by: Konstantin Aladyshev <aladyshev22@gmail.com>
Change-Id: I8588af6e1fb6a3a9f74730de3f3ab0cee0110962
diff --git a/src/store/modules/Health/SensorsStore.js b/src/store/modules/Health/SensorsStore.js
index 1c0de0d..0af2a95 100644
--- a/src/store/modules/Health/SensorsStore.js
+++ b/src/store/modules/Health/SensorsStore.js
@@ -71,10 +71,13 @@
           const sensorData = [];
           Fans.forEach((sensor) => {
             sensorData.push({
-              // TODO: add upper/lower threshold
               name: sensor.Name,
               status: sensor.Status.Health,
               currentValue: sensor.Reading,
+              lowerCaution: sensor.LowerThresholdNonCritical,
+              upperCaution: sensor.UpperThresholdNonCritical,
+              lowerCritical: sensor.LowerThresholdCritical,
+              upperCritical: sensor.UpperThresholdCritical,
               units: sensor.ReadingUnits,
             });
           });