@astroapps/forms-core 2.0.0 → 2.0.1
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/lib/index.cjs +1 -1
- package/lib/index.cjs.map +1 -1
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
- package/src/resolveChildren.ts +1 -1
package/lib/index.cjs
CHANGED
|
@@ -2393,7 +2393,7 @@ function resolveArrayChildren(data, node, adjustChild) {
|
|
|
2393
2393
|
var singleChild = childCount === 1 ? childNodes[0] : null;
|
|
2394
2394
|
return data.control.as().elements.map(function (x, i) {
|
|
2395
2395
|
return {
|
|
2396
|
-
childKey: x.uniqueId,
|
|
2396
|
+
childKey: x.uniqueId + "/" + i,
|
|
2397
2397
|
create: function create() {
|
|
2398
2398
|
var _adjustChild;
|
|
2399
2399
|
return _extends({
|