react-crud-mobile 1.0.752 → 1.0.753
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.
- package/dist/react-crud-mobile.cjs.development.js +1 -1
- package/dist/react-crud-mobile.cjs.development.js.map +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js +1 -1
- package/dist/react-crud-mobile.cjs.production.min.js.map +1 -1
- package/dist/react-crud-mobile.esm.js +1 -1
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIList.tsx +2 -2
package/package.json
CHANGED
|
@@ -37,6 +37,8 @@ export default function UIList(props: ChildType) {
|
|
|
37
37
|
setIndex(index);
|
|
38
38
|
};
|
|
39
39
|
|
|
40
|
+
let keyData = scope.key('data', index);
|
|
41
|
+
|
|
40
42
|
const items = Utils.call(() => {
|
|
41
43
|
let list = Utils.nvl(scope.getItems(), []);
|
|
42
44
|
|
|
@@ -118,8 +120,6 @@ export default function UIList(props: ChildType) {
|
|
|
118
120
|
);
|
|
119
121
|
};
|
|
120
122
|
|
|
121
|
-
let keyData = scope.key('data');
|
|
122
|
-
|
|
123
123
|
return (
|
|
124
124
|
<>
|
|
125
125
|
{original.search !== false && (
|