mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
Fix columns for build line table (#7931)
Used incorrect accessor string
This commit is contained in:
parent
0c30f7cc99
commit
6591286e27
@ -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`
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user