Skip to content

Commit

Permalink
Add more columns to BuildLineTable (#7914)
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat authored Aug 19, 2024
1 parent 48ee876 commit 2e10400
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/frontend/src/tables/build/BuildLineTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,16 @@ export default function BuildLineTable({
switchable: false,
render: (record: any) => PartColumn(record.part_detail)
},
{
accessor: 'record.part_detail.IPN',
sortable: false,
title: t`IPN`
},
{
accessor: 'record.part_detail.description',
sortable: false,
title: t`Description`
},
{
accessor: 'bom_item_detail.reference',
ordering: 'reference',
Expand Down

0 comments on commit 2e10400

Please sign in to comment.