diff --git a/core/src/browser/models/utils.ts b/core/src/browser/models/utils.ts index 6f8e106c4..cb1baacd7 100644 --- a/core/src/browser/models/utils.ts +++ b/core/src/browser/models/utils.ts @@ -62,7 +62,7 @@ export const normalizeValue = (key: string, value: any) => { ) { // Convert to float const newValue = parseFloat(value) - if (newValue && !isNaN(newValue)) { + if (newValue !== null && !isNaN(newValue)) { return newValue } }