Add fans hardware status missing properties

Adds identify LED, name - hardware type, health rollup,
fan speed, and location number properties to table.

Signed-off-by: Dixsie Wolmers <dixsie@ibm.com>
Change-Id: I5f209b853ab70becf4c4289e871da1ce279d1ac3
diff --git a/src/store/modules/Health/FanStore.js b/src/store/modules/Health/FanStore.js
index b4a4189..fca1f32 100644
--- a/src/store/modules/Health/FanStore.js
+++ b/src/store/modules/Health/FanStore.js
@@ -11,12 +11,27 @@
   mutations: {
     setFanInfo: (state, data) => {
       state.fans = data.map((fan) => {
-        const { MemberId, Status = {}, PartNumber, SerialNumber } = fan;
+        const {
+          IndicatorLED,
+          Location,
+          MemberId,
+          Name,
+          Reading,
+          ReadingUnits,
+          Status = {},
+          PartNumber,
+          SerialNumber,
+        } = fan;
         return {
           id: MemberId,
           health: Status.Health,
           partNumber: PartNumber,
           serialNumber: SerialNumber,
+          healthRollup: Status.HealthRollup,
+          identifyLed: IndicatorLED,
+          locationNumber: Location,
+          name: Name,
+          speed: Reading + ' ' + ReadingUnits,
           statusState: Status.State,
         };
       });