summaryrefslogtreecommitdiff
path: root/src/store/modules/Health/PowerSupplyStore.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/Health/PowerSupplyStore.js')
-rw-r--r--src/store/modules/Health/PowerSupplyStore.js12
1 files changed, 9 insertions, 3 deletions
diff --git a/src/store/modules/Health/PowerSupplyStore.js b/src/store/modules/Health/PowerSupplyStore.js
index cc82f2ef..f7be2809 100644
--- a/src/store/modules/Health/PowerSupplyStore.js
+++ b/src/store/modules/Health/PowerSupplyStore.js
@@ -14,13 +14,16 @@ const PowerSupplyStore = {
const {
EfficiencyPercent,
FirmwareVersion,
- IndicatorLED,
+ LocationIndicatorActive,
MemberId,
+ Manufacturer,
Model,
+ Name,
PartNumber,
PowerInputWatts,
SerialNumber,
- Status,
+ SparePartNumber,
+ Status = {},
} = powerSupply;
return {
id: MemberId,
@@ -29,9 +32,12 @@ const PowerSupplyStore = {
serialNumber: SerialNumber,
efficiencyPercent: EfficiencyPercent,
firmwareVersion: FirmwareVersion,
- indicatorLed: IndicatorLED,
+ identifyLed: LocationIndicatorActive,
+ manufacturer: Manufacturer,
model: Model,
powerInputWatts: PowerInputWatts,
+ name: Name,
+ sparePartNumber: SparePartNumber,
statusState: Status.State,
};
});