From 1532c1bf4a3236ce9056f33e51ddfebeff79ed5a Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 17 Nov 2025 07:06:52 +0000 Subject: (최겸) 구매 피드백 처리 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/rfq-last/table/rfq-table-columns.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/rfq-last/table/rfq-table-columns.tsx') diff --git a/lib/rfq-last/table/rfq-table-columns.tsx b/lib/rfq-last/table/rfq-table-columns.tsx index 6976e1c5..62f14579 100644 --- a/lib/rfq-last/table/rfq-table-columns.tsx +++ b/lib/rfq-last/table/rfq-table-columns.tsx @@ -337,7 +337,8 @@ export function getRfqColumns({ cell: ({ row }) => { const received = row.original.quotationReceivedCount || 0; const total = row.original.vendorCount || 0; - return `${received}/${total}`; + // return `${received}/${total}`; + return {received}; }, size: 100, }, @@ -698,7 +699,8 @@ export function getRfqColumns({ cell: ({ row }) => { const received = row.original.quotationReceivedCount || 0; const total = row.original.vendorCount || 0; - return `${received}/${total}`; + // return `${received}/${total}`; + return {received}; }, size: 100, }, -- cgit v1.2.3