[UI] Make part cell text copyable
This commit is contained in:
parent
25b83c7388
commit
ad16a1bfbf
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in New Issue