react-crud-mobile 1.0.877 → 1.0.878
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/dist/react-crud-mobile.cjs.development.js +2 -0
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +2 -0
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UISlider.tsx +6 -1
|
@@ -643,7 +643,9 @@ function UISlider(props) {
|
|
|
643
643
|
var _useState = React.useState(initial),
|
|
644
644
|
value = _useState[0],
|
|
645
645
|
setValue = _useState[1];
|
|
646
|
+
value = reactCrudUtils.Utils.nvl(value, 0);
|
|
646
647
|
var onChange = function onChange(v) {
|
|
648
|
+
v = reactCrudUtils.Utils.nvl(v, 0);
|
|
647
649
|
scope.changeValue(v);
|
|
648
650
|
setValue(v);
|
|
649
651
|
};
|