react-crud-mobile 1.3.141 → 1.3.142

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