react-crud-mobile 1.3.141 → 1.3.143

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.
@@ -1673,7 +1673,11 @@ function UIOrder(props) {
1673
1673
  data: data,
1674
1674
  renderItem: renderItem,
1675
1675
  keyExtractor: function keyExtractor(item) {
1676
- return scope.getItemValue(item);
1676
+ var key = scope.getItemValue(item);
1677
+ if (original != null && original.debug) {
1678
+ console.log(key);
1679
+ }
1680
+ return key;
1677
1681
  },
1678
1682
  onDragEnd: function onDragEnd(_ref2) {
1679
1683
  var data = _ref2.data;