From c6899362be4ad17a4f3e660bcc9ce00c9a2837d5 Mon Sep 17 00:00:00 2001 From: "Thang Q. Nguyen" Date: Wed, 20 Oct 2021 02:08:49 +0000 Subject: 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 Change-Id: Ib856e8b66c49dbb71506f45c4c01dbcb79bea52c --- src/views/HardwareStatus/Inventory/InventoryTableSystem.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/views/HardwareStatus') 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 @@
{{ $t('pageInventory.table.manufacturer') }}:
-
{{ dataFormatter(item.assetTag) }}
+
{{ dataFormatter(item.manufacturer) }}
{{ $t('pageInventory.table.description') }}:
{{ dataFormatter(item.description) }}
-- cgit v1.2.3