From 69268533b434ba59562a14af339a1780288b74b1 Mon Sep 17 00:00:00 2001 From: "kelvin.yau" Date: Tue, 30 Sep 2025 11:32:04 +0800 Subject: [PATCH] uom update --- src/components/JoSave/PickTable.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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})`; }, }, {