[UI] Make part cell text copyable

This commit is contained in:
Oliver Walters 2026-06-29 03:21:46 +00:00
parent 25b83c7388
commit ad16a1bfbf
1 changed files with 7 additions and 0 deletions

View File

@ -94,6 +94,13 @@ export function PartColumn(props: PartColumnProps): TableColumn {
sortable: true,
switchable: false,
minWidth: '175px',
copyable: (record: any) => {
const part = resolveItem(
record,
props.part ?? props.accessor ?? 'part_detail'
);
return part?.full_name ?? part?.name ?? '';
},
render: (record: any) => {
const part = resolveItem(
record,