summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThang Q. Nguyen <thang@os.amperecomputing.com>2021-10-20 05:08:49 +0300
committerDixsie Wolmers <dixsiew@gmail.com>2021-11-04 16:44:23 +0300
commitc6899362be4ad17a4f3e660bcc9ce00c9a2837d5 (patch)
treecc76f12b54f97e6d665a03de353abd70f19f4815
parent19ddb53460dc5108b1f0798cc0eef3641290310d (diff)
downloadwebui-vue-c6899362be4ad17a4f3e660bcc9ce00c9a2837d5.tar.xz
Fix wrong System Manufacturer in Hardware Inventory
System Manufacturer inside HardwareStatus -> Inventory mistakenly uses assetTag instead of manufacturer. Fix the issue by using item.manufacturer for Manufacturer. Tested: 1. Login to WebUI and check if System Manufacturer shows correctly. Signed-off-by: Thang Q. Nguyen <thang@os.amperecomputing.com> Change-Id: Ib856e8b66c49dbb71506f45c4c01dbcb79bea52c
-rw-r--r--src/views/HardwareStatus/Inventory/InventoryTableSystem.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
index d803023d..20d63d79 100644
--- a/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
+++ b/src/views/HardwareStatus/Inventory/InventoryTableSystem.vue
@@ -81,7 +81,7 @@
<dl>
<!-- Manufacturer -->
<dt>{{ $t('pageInventory.table.manufacturer') }}:</dt>
- <dd>{{ dataFormatter(item.assetTag) }}</dd>
+ <dd>{{ dataFormatter(item.manufacturer) }}</dd>
<!-- Description -->
<dt>{{ $t('pageInventory.table.description') }}:</dt>
<dd>{{ dataFormatter(item.description) }}</dd>