mirror of
https://github.com/Hestia-Homes/assessment-model.git
synced 2026-06-30 12:55:02 +00:00
formatted number on recommendation table
This commit is contained in:
parent
0219862a05
commit
78ab794916
1 changed files with 3 additions and 0 deletions
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue