diff options
Diffstat (limited to 'lib/rfq-last/table/rfq-table-columns.tsx')
| -rw-r--r-- | lib/rfq-last/table/rfq-table-columns.tsx | 6 |
1 files changed, 4 insertions, 2 deletions
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 <Badge variant="outline">{received}</Badge>; }, 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 <Badge variant="outline">{received}</Badge>; }, size: 100, }, |
