diff --git a/source/components/conversation/FormDecorator.js b/source/components/conversation/FormDecorator.js index 87a0555d2..d3653a19f 100644 --- a/source/components/conversation/FormDecorator.js +++ b/source/components/conversation/FormDecorator.js @@ -50,7 +50,7 @@ export var FormDecorator = formType => RenderField => setFormValue(name, value), ...(unit === '%' ? { - format: x => (x == null ? null : x * 100), + format: x => (x == null ? null : +(x * 100).toFixed(2)), normalize: x => (x == null ? null : x / 100) } : {})