From 396ebe50014eb20fd0fc3900ff832b348af35ed0 Mon Sep 17 00:00:00 2001 From: rstubryan Date: Wed, 8 Oct 2025 09:55:19 +0700 Subject: [PATCH] feat(FE-43): add 'Code' column to Product Category table --- .../master-data/product-category/ProductCategoryTable.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/pages/master-data/product-category/ProductCategoryTable.tsx b/src/components/pages/master-data/product-category/ProductCategoryTable.tsx index f5226387..f8413ab6 100644 --- a/src/components/pages/master-data/product-category/ProductCategoryTable.tsx +++ b/src/components/pages/master-data/product-category/ProductCategoryTable.tsx @@ -109,6 +109,10 @@ const ProductCategoryTable = () => { props.row.index + 1, }, + { + accessorKey: 'code', + header: 'Code', + }, { accessorKey: 'name', header: 'Nama',