summaryrefslogtreecommitdiff
path: root/src/store/modules/HardwareStatus
diff options
context:
space:
mode:
Diffstat (limited to 'src/store/modules/HardwareStatus')
-rw-r--r--src/store/modules/HardwareStatus/MemoryStore.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/store/modules/HardwareStatus/MemoryStore.js b/src/store/modules/HardwareStatus/MemoryStore.js
index 6f6abe53..fd8f0a91 100644
--- a/src/store/modules/HardwareStatus/MemoryStore.js
+++ b/src/store/modules/HardwareStatus/MemoryStore.js
@@ -15,6 +15,12 @@ const MemoryStore = {
const {
Id,
Status = {},
+ BaseModuleType,
+ BusWidthBits,
+ CapacityMiB,
+ DataWidthBits,
+ Enabled,
+ OperatingSpeedMhz,
PartNumber,
SerialNumber,
SparePartNumber,
@@ -27,6 +33,12 @@ const MemoryStore = {
return {
id: Id,
health: Status.Health,
+ baseModuleType: BaseModuleType,
+ busWidthBits: BusWidthBits,
+ capacityMiB: CapacityMiB,
+ dataWidthBits: DataWidthBits,
+ operatingSpeedMhz: OperatingSpeedMhz,
+ enabled: Enabled,
partNumber: PartNumber,
serialNumber: SerialNumber,
statusState: Status.State,