From 61fdd942fc17a63713a82917b185d1ae16b49e4f Mon Sep 17 00:00:00 2001 From: Sandeepa Singh Date: Mon, 27 Dec 2021 17:40:32 +0530 Subject: Add missing properties to Dimms table - Added the following properties: Base module type, Bus width bits, Capacity MiB, Data width bits, Enabled, Operating speed Mhz - Design has been updated for Dimms table Signed-off-by: Sandeepa Singh Change-Id: Ifd77071abd9544120c1904065275ccc00dd8d862 --- src/store/modules/HardwareStatus/MemoryStore.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/store') 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, -- cgit v1.2.3