@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.js
CHANGED
|
@@ -2120,7 +2120,7 @@ function resolveArrayChildren(data, node, adjustChild) {
|
|
|
2120
2120
|
const childCount = childNodes.length;
|
|
2121
2121
|
const singleChild = childCount === 1 ? childNodes[0] : null;
|
|
2122
2122
|
return data.control.as().elements.map((x, i) => ({
|
|
2123
|
-
childKey: x.uniqueId,
|
|
2123
|
+
childKey: x.uniqueId + "/" + i,
|
|
2124
2124
|
create: () => {
|
|
2125
2125
|
var _adjustChild;
|
|
2126
2126
|
return _extends({
|