From 62a3d615f4373cdb847aaddb368bdc498de5c4da Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 17 Apr 2026 15:25:21 -0400 Subject: [PATCH] feat(parts): make MPN and manufacturer cells clickable MPN links to /part-models/:id and manufacturer links to /manufacturers/:id, matching the cross-navigation pattern used on other detail and table views. Co-Authored-By: Claude Opus 4.7 --- apps/web/src/pages/Parts.tsx | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/apps/web/src/pages/Parts.tsx b/apps/web/src/pages/Parts.tsx index fcb7886..eae6653 100644 --- a/apps/web/src/pages/Parts.tsx +++ b/apps/web/src/pages/Parts.tsx @@ -116,14 +116,24 @@ export default function Parts() { id: 'mpn', header: 'MPN', cell: ({ row }) => ( - {row.original.partModel.mpn} + + {row.original.partModel.mpn} + ), }, { id: 'manufacturer', header: 'Manufacturer', cell: ({ row }) => ( - {row.original.manufacturer.name} + + {row.original.manufacturer.name} + ), }, {