react-crud-mobile 1.3.379 → 1.3.380

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.
@@ -1755,8 +1755,12 @@ function UIOrder(props) {
1755
1755
  }, [items]);
1756
1756
  var onChange = function onChange(updated) {
1757
1757
  var array = [];
1758
+ var items = scope.getItems();
1759
+ items.splice(0);
1758
1760
  Utils.each(updated, function (o) {
1759
- array.push(o.object);
1761
+ var v = o.object;
1762
+ array.push(v);
1763
+ items.push(v);
1760
1764
  });
1761
1765
  scope.changeValue(array);
1762
1766
  };