@processmaker/screen-builder 2.60.2 → 2.60.3
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/vue-form-builder.common.js +1264 -1188
- package/dist/vue-form-builder.common.js.map +1 -1
- package/dist/vue-form-builder.umd.js +1264 -1188
- package/dist/vue-form-builder.umd.js.map +1 -1
- package/dist/vue-form-builder.umd.min.js +2 -2
- package/dist/vue-form-builder.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/src/DataProvider.js +4 -0
- package/src/ValidationsFactory.js +3 -1
package/package.json
CHANGED
package/src/DataProvider.js
CHANGED
|
@@ -89,6 +89,9 @@ class FormNestedScreenValidations extends Validations {
|
|
|
89
89
|
}
|
|
90
90
|
|
|
91
91
|
async loadScreen(id) {
|
|
92
|
+
if (!id) {
|
|
93
|
+
return null;
|
|
94
|
+
}
|
|
92
95
|
if (!globalObject['nestedScreens']) {
|
|
93
96
|
globalObject['nestedScreens'] = {};
|
|
94
97
|
}
|
|
@@ -99,7 +102,6 @@ class FormNestedScreenValidations extends Validations {
|
|
|
99
102
|
globalObject.nestedScreens['id_' + id] = response.data.config;
|
|
100
103
|
return response.data.config;
|
|
101
104
|
}
|
|
102
|
-
|
|
103
105
|
}
|
|
104
106
|
|
|
105
107
|
/**
|