react-crud-mobile 1.3.10 → 1.3.11
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/UIModal.tsx +2 -3
package/package.json
CHANGED
|
@@ -55,9 +55,6 @@ export default function UIModal(props: ChildType) {
|
|
|
55
55
|
|
|
56
56
|
scope.dialogShow = (args?: MethodType) => {
|
|
57
57
|
let { crud } = args;
|
|
58
|
-
|
|
59
|
-
console.log(index);
|
|
60
|
-
|
|
61
58
|
let name = scope.getName('modal');
|
|
62
59
|
let edit = args.edit === true;
|
|
63
60
|
let def: any = {};
|
|
@@ -132,6 +129,8 @@ export default function UIModal(props: ChildType) {
|
|
|
132
129
|
let defaults = { color };
|
|
133
130
|
let key = `${scope.currentDialog.name}-${index}`;
|
|
134
131
|
|
|
132
|
+
console.log(key);
|
|
133
|
+
|
|
135
134
|
return (
|
|
136
135
|
<Modal
|
|
137
136
|
key={key}
|