2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 10:35:40 +00:00

Add part full name to supplier part table (#9197)

This commit is contained in:
Michael
2025-02-27 13:17:43 +01:00
committed by GitHub
parent 28259a1ad6
commit 0da9391568

View File

@ -47,7 +47,8 @@ export function SupplierPartTable({
accessor: 'part',
switchable: 'part' in params,
sortable: true,
render: (record: any) => PartColumn({ part: record?.part_detail })
render: (record: any) =>
PartColumn({ part: record?.part_detail, full_name: true })
},
{
accessor: 'supplier',