summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/store/modules/HardwareStatus/MemoryStore.js2
-rw-r--r--src/views/_sila/Overview/Inventory/InventoryTableDimmSlot.vue5
2 files changed, 7 insertions, 0 deletions
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
@@ -112,6 +112,11 @@
<b-row>
<b-col sm="6" xl="6">
<dl>
+ <!-- Manufacturer -->
+ <dt>{{ $t('pageInventory.table.manufacturer') }}:</dt>
+ <dd>{{ dataFormatter(item.manufacturer) }}</dd>
+ </dl>
+ <dl>
<!-- Description -->
<dt>{{ $t('pageInventory.table.description') }}:</dt>
<dd>{{ dataFormatter(item.description) }}</dd>