From 6591286e275989c3314a1f096bbf1cc6e6f17f10 Mon Sep 17 00:00:00 2001 From: Oliver Date: Tue, 20 Aug 2024 10:01:18 +1000 Subject: [PATCH] Fix columns for build line table (#7931) Used incorrect accessor string --- src/frontend/src/tables/build/BuildLineTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontend/src/tables/build/BuildLineTable.tsx b/src/frontend/src/tables/build/BuildLineTable.tsx index 471f372046..83c87d5804 100644 --- a/src/frontend/src/tables/build/BuildLineTable.tsx +++ b/src/frontend/src/tables/build/BuildLineTable.tsx @@ -168,12 +168,12 @@ export default function BuildLineTable({ render: (record: any) => PartColumn(record.part_detail) }, { - accessor: 'record.part_detail.IPN', + accessor: 'part_detail.IPN', sortable: false, title: t`IPN` }, { - accessor: 'record.part_detail.description', + accessor: 'part_detail.description', sortable: false, title: t`Description` },