@arquimedes.co/eureka-forms 1.9.48 → 1.9.49-test
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/App.js +5 -0
- package/package.json +1 -1
package/dist/App.js
CHANGED
|
@@ -430,6 +430,11 @@ var mapOriginalValue = function (step, value, form) {
|
|
|
430
430
|
break;
|
|
431
431
|
}
|
|
432
432
|
default:
|
|
433
|
+
if (step.type.startsWith('CBR_') &&
|
|
434
|
+
(value === null || value === void 0 ? void 0 : value.id) &&
|
|
435
|
+
typeof value.id === 'number') {
|
|
436
|
+
return __assign(__assign({}, value), { id: value.id.toString() });
|
|
437
|
+
}
|
|
433
438
|
return value;
|
|
434
439
|
}
|
|
435
440
|
};
|
package/package.json
CHANGED