From fe7ed8028e43cae06d77d688caca998e14594855 Mon Sep 17 00:00:00 2001 From: Oliver Date: Wed, 16 Sep 2026 12:52:05 +1000 Subject: [PATCH] [UI] Enable copyable cell for BOM table (#12863) --- src/frontend/src/tables/bom/BomTable.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/frontend/src/tables/bom/BomTable.tsx b/src/frontend/src/tables/bom/BomTable.tsx index fc562fb3a2..f82388897c 100644 --- a/src/frontend/src/tables/bom/BomTable.tsx +++ b/src/frontend/src/tables/bom/BomTable.tsx @@ -112,6 +112,7 @@ export function BomTable({ switchable: false, sortable: true, minWidth: 250, + copyable: (record: any) => record.sub_part_detail?.name ?? '', render: (record: any) => { const part = record.sub_part_detail;