formatted number on recommendation table

This commit is contained in:
Khalim Conn-Kowlessar 2023-07-28 09:15:54 +01:00
parent 0219862a05
commit 78ab794916

View file

@ -15,6 +15,9 @@ export const uvalueColumns: ColumnDef<ComponentRecommendation>[] = [
{
accessorKey: "estimatedCost",
header: "Estimated Cost",
cell: ({ row }) => {
return <div>£{formatNumber(row.getValue("estimatedCost"))}</div>;
},
},
{
accessorKey: "newUValue",