react-crud-mobile 1.3.13 → 1.3.14

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.
@@ -510,6 +510,8 @@ function UISelect(props) {
510
510
  var val = value;
511
511
  if (element.isObject && val != null && val.object) {
512
512
  scope.changeValue(val == null ? void 0 : val.object);
513
+ } else if (val != null && val.value) {
514
+ scope.changeValue(val == null ? void 0 : val.value);
513
515
  } else {
514
516
  scope.changeValue(value);
515
517
  }