lw-cdp-ui 1.2.25 → 1.2.26

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.
@@ -216,7 +216,12 @@ export default {
216
216
  if (!existingValue) {
217
217
  existingValue = []
218
218
  } else {
219
- existingValue = form?.[item.name][listIndex] || {}
219
+ if (form?.[item.name] && form?.[item.name][listIndex]) {
220
+ existingValue = form?.[item.name][listIndex] || {}
221
+ } else {
222
+ existingValue = {}
223
+ }
224
+
220
225
  }
221
226
  return parse(list, existingValue)
222
227
  }) || [];