summaryrefslogtreecommitdiff
path: root/src/store/modules/HardwareStatus
diff options
context:
space:
mode:
authorSandeepa Singh <sandeepa.singh@ibm.com>2021-12-27 15:10:32 +0300
committerDixsie Wolmers <dixsiew@gmail.com>2022-01-07 19:25:36 +0300
commit61fdd942fc17a63713a82917b185d1ae16b49e4f (patch)
treebcb51e66c1fd8e0bc99f16a5f178f1d8139456eb /src/store/modules/HardwareStatus
parentf4328edf86b284fe8836717251ce6696670dbdd5 (diff)
downloadwebui-vue-61fdd942fc17a63713a82917b185d1ae16b49e4f.tar.xz
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 <sandeepa.singh@ibm.com> Change-Id: Ifd77071abd9544120c1904065275ccc00dd8d862
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,