@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/package.json
CHANGED
package/src/resolveChildren.ts
CHANGED
|
@@ -104,7 +104,7 @@ export function resolveArrayChildren(
|
|
|
104
104
|
const childCount = childNodes.length;
|
|
105
105
|
const singleChild = childCount === 1 ? childNodes[0] : null;
|
|
106
106
|
return data.control.as<any[]>().elements.map((x, i) => ({
|
|
107
|
-
childKey: x.uniqueId,
|
|
107
|
+
childKey: x.uniqueId + "/" + i,
|
|
108
108
|
create: () => ({
|
|
109
109
|
definition: !childCount
|
|
110
110
|
? ({
|