diff --git a/src/components/Form.js b/src/components/Form.js index ef6c3ea10474..9836bd818536 100644 --- a/src/components/Form.js +++ b/src/components/Form.js @@ -299,7 +299,7 @@ function Form(props) { // We want to initialize the input value if it's undefined if (_.isUndefined(inputValues[inputID])) { - inputValues[inputID] = defaultValue || ''; + inputValues[inputID] = _.isBoolean(defaultValue) ? defaultValue : defaultValue || ''; } // We force the form to set the input value from the defaultValue props if there is a saved valid value