impaktapps-ui-builder 1.0.171 → 1.0.173
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.
|
@@ -8525,15 +8525,14 @@ const clearFromSessionStorage = () => {
|
|
|
8525
8525
|
sessionStorage.removeItem("pageFormdata");
|
|
8526
8526
|
};
|
|
8527
8527
|
const isErrorExist = (store2) => {
|
|
8528
|
-
if (
|
|
8529
|
-
|
|
8530
|
-
|
|
8531
|
-
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
8536
|
-
return false;
|
|
8528
|
+
if (_.isEmpty(store2.ctx.core.errors))
|
|
8529
|
+
return false;
|
|
8530
|
+
store2.setValidation("ValidateAndShow");
|
|
8531
|
+
store2.setNotify({
|
|
8532
|
+
Fail: true,
|
|
8533
|
+
FailMessage: "Error on Page"
|
|
8534
|
+
});
|
|
8535
|
+
return true;
|
|
8537
8536
|
};
|
|
8538
8537
|
const getNavigationHistory = (config2, path) => {
|
|
8539
8538
|
if (path) {
|