@formio/js 5.0.0-dev.5884.79b0f27 → 5.0.0-dev.5885.a79f03e
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/formio.form.js +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +1 -1
- package/dist/formio.full.min.js +1 -1
- package/lib/cjs/components/_classes/nested/NestedComponent.js +3 -0
- package/lib/mjs/components/_classes/nested/NestedComponent.js +3 -0
- package/package.json +1 -1
|
@@ -693,6 +693,9 @@ class NestedComponent extends Field_1.default {
|
|
|
693
693
|
if (!instance) {
|
|
694
694
|
return;
|
|
695
695
|
}
|
|
696
|
+
if (!instance.component.path) {
|
|
697
|
+
instance.component.path = component.path;
|
|
698
|
+
}
|
|
696
699
|
instance.checkComponentValidity(data, dirty, row, flags, scope.errors);
|
|
697
700
|
if (instance.processOwnValidation) {
|
|
698
701
|
scope.noRecurse = true;
|
|
@@ -688,6 +688,9 @@ export default class NestedComponent extends Field {
|
|
|
688
688
|
if (!instance) {
|
|
689
689
|
return;
|
|
690
690
|
}
|
|
691
|
+
if (!instance.component.path) {
|
|
692
|
+
instance.component.path = component.path;
|
|
693
|
+
}
|
|
691
694
|
instance.checkComponentValidity(data, dirty, row, flags, scope.errors);
|
|
692
695
|
if (instance.processOwnValidation) {
|
|
693
696
|
scope.noRecurse = true;
|