@react-typed-forms/schemas 11.5.1 → 11.5.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -1404,7 +1404,7 @@ function useControlRenderer(definition, fields, renderer, options) {
|
|
|
1404
1404
|
control.value = undefined;
|
|
1405
1405
|
}
|
|
1406
1406
|
} else control.setValue(function (x) {
|
|
1407
|
-
return x ? x : dv;
|
|
1407
|
+
return x != null ? x : dv;
|
|
1408
1408
|
});
|
|
1409
1409
|
}
|
|
1410
1410
|
} else if (parentNull) {
|