From 48ee876d795ec8ffaf16e657ee50a3b5b98f0c40 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 19 Aug 2024 12:25:29 +1000 Subject: [PATCH] Add "description" column to (#7912) --- src/frontend/src/tables/bom/UsedInTable.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/frontend/src/tables/bom/UsedInTable.tsx b/src/frontend/src/tables/bom/UsedInTable.tsx index 191b3656af..a6d5193013 100644 --- a/src/frontend/src/tables/bom/UsedInTable.tsx +++ b/src/frontend/src/tables/bom/UsedInTable.tsx @@ -38,6 +38,11 @@ export function UsedInTable({ sortable: false, title: t`IPN` }, + { + accessor: 'part_detail.description', + sortable: false, + title: t`Description` + }, { accessor: 'sub_part', sortable: true,