@arquimedes.co/eureka-forms 2.0.38 → 2.0.40
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.
|
@@ -148,6 +148,10 @@ export var calcDefaultValue = function (step) {
|
|
|
148
148
|
};
|
|
149
149
|
export var iterateNestedSteps = function (idStep, steps, iteration) {
|
|
150
150
|
var step = steps[idStep];
|
|
151
|
+
if (!step) {
|
|
152
|
+
console.error('Missing Step:', idStep);
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
151
155
|
iteration(step);
|
|
152
156
|
if (step.type === StepTypes.MAPPER) {
|
|
153
157
|
for (var _i = 0, _a = step.rootSteps; _i < _a.length; _i++) {
|