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.
@@ -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
  };