react-crud-mobile 1.0.751 → 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 -2
- 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 -2
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/core/UIList.tsx +2 -4
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
|
|
|
@@ -46,8 +48,6 @@ export default function UIList(props: ChildType) {
|
|
|
46
48
|
.toLowerCase()
|
|
47
49
|
.trim() as string;
|
|
48
50
|
|
|
49
|
-
console.log(query);
|
|
50
|
-
|
|
51
51
|
if (query.length > 1) {
|
|
52
52
|
let filters: any[] = [];
|
|
53
53
|
let filterBy = Utils.nvl(original.filterBy, 'label');
|
|
@@ -120,8 +120,6 @@ export default function UIList(props: ChildType) {
|
|
|
120
120
|
);
|
|
121
121
|
};
|
|
122
122
|
|
|
123
|
-
let keyData = scope.key('data');
|
|
124
|
-
|
|
125
123
|
return (
|
|
126
124
|
<>
|
|
127
125
|
{original.search !== false && (
|