From 10f5207c77b16b46f637f77520964c82226d27fb Mon Sep 17 00:00:00 2001 From: Nikita Kosenkov Date: Fri, 26 Aug 2022 21:25:54 +0300 Subject: add manufacturer property in dimm table --- src/store/modules/HardwareStatus/MemoryStore.js | 2 ++ src/views/_sila/Overview/Inventory/InventoryTableDimmSlot.vue | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/src/store/modules/HardwareStatus/MemoryStore.js b/src/store/modules/HardwareStatus/MemoryStore.js index 21e07598..5a116f63 100644 --- a/src/store/modules/HardwareStatus/MemoryStore.js +++ b/src/store/modules/HardwareStatus/MemoryStore.js @@ -31,6 +31,7 @@ const MemoryStore = { Description, MemoryType, MemorySize, + Manufacturer, LocationIndicatorActive, Location, } = data; @@ -50,6 +51,7 @@ const MemoryStore = { description: Description, memoryType: MemoryType, memorySize: MemorySize, + manufacturer: Manufacturer, identifyLed: LocationIndicatorActive, uri: data['@odata.id'], locationNumber: Location?.PartLocation?.ServiceLabel, diff --git a/src/views/_sila/Overview/Inventory/InventoryTableDimmSlot.vue b/src/views/_sila/Overview/Inventory/InventoryTableDimmSlot.vue index 40c30d4c..249ab728 100644 --- a/src/views/_sila/Overview/Inventory/InventoryTableDimmSlot.vue +++ b/src/views/_sila/Overview/Inventory/InventoryTableDimmSlot.vue @@ -111,6 +111,11 @@
+
+ +
{{ $t('pageInventory.table.manufacturer') }}:
+
{{ dataFormatter(item.manufacturer) }}
+
{{ $t('pageInventory.table.description') }}:
-- cgit v1.2.3