diff --git a/web/src/features/moreCast2/components/GridComponentRenderer.tsx b/web/src/features/moreCast2/components/GridComponentRenderer.tsx index 89a326925..bb2a0cac6 100644 --- a/web/src/features/moreCast2/components/GridComponentRenderer.tsx +++ b/web/src/features/moreCast2/components/GridComponentRenderer.tsx @@ -89,7 +89,7 @@ export class GridComponentRenderer { // we can leave it blank, so it's obvious that it can have a value entered into it. if (isNaN(value) && !isPreviousDate && isForecastColumn && !rowContainsActual) { return '' - } else return isNaN(value) ? noDataField : value + } else return isNaN(value) ? noDataField : Number(value).toFixed(precision) } public renderForecastCellWith = (params: Pick, field: string) => {