react-crud-mobile 1.3.276 → 1.3.277
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 -6
- 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 -6
- package/dist/react-crud-mobile.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/elements/UIElement.tsx +1 -5
package/package.json
CHANGED
@@ -711,10 +711,6 @@ export default function UIElement(props: ElementType) {
|
|
711
711
|
main.dialog = next;
|
712
712
|
scope.currentDialog = next;
|
713
713
|
|
714
|
-
if (main.dialog?.crud?.scope) {
|
715
|
-
main.dialog?.crud.scope.update();
|
716
|
-
}
|
717
|
-
|
718
714
|
if (current?.scope) {
|
719
715
|
const close = current.close;
|
720
716
|
|
@@ -726,7 +722,7 @@ export default function UIElement(props: ElementType) {
|
|
726
722
|
}
|
727
723
|
}
|
728
724
|
|
729
|
-
if (next
|
725
|
+
if (next?.scope) {
|
730
726
|
next.scope.update();
|
731
727
|
}
|
732
728
|
};
|