diff --git a/src/components/JoSave/PickTable.tsx b/src/components/JoSave/PickTable.tsx index 6ab6f3f..5f4dd6e 100644 --- a/src/components/JoSave/PickTable.tsx +++ b/src/components/JoSave/PickTable.tsx @@ -181,7 +181,7 @@ const PickTable: React.FC = ({ headerAlign: "right", renderCell: (params: GridRenderCellParams) => { const uomShortDesc = getUomShortDesc(params.row); - return `${decimalFormatter.format(params.value)} ${params.row.shortUom}`; + return `${decimalFormatter.format(params.value)} (${params.row.shortUom})`; }, }, { @@ -193,7 +193,7 @@ const PickTable: React.FC = ({ type: "number", renderCell: (params: GridRenderCellParams) => { const uomShortDesc = getUomShortDesc(params.row); - return `${decimalFormatter.format(params.value)} ${params.row.shortUom}`; + return `${decimalFormatter.format(params.value)} (${params.row.shortUom})`; }, }, {