diff --git a/src/frontend/src/components/details/Details.tsx b/src/frontend/src/components/details/Details.tsx index 58eb6312bb..28403e62f4 100644 --- a/src/frontend/src/components/details/Details.tsx +++ b/src/frontend/src/components/details/Details.tsx @@ -280,7 +280,7 @@ function NumberValue(props: Readonly) { const value = props?.field_value; // Convert to double - const numberValue = Number.parseFloat(value.toString()); + const numberValue = Number.parseFloat(value?.toString() ?? ''); if (value === null || value === undefined) { return '---';