@alfresco/adf-core 8.4.0-19368899792 → 8.4.0-19425303160

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.
@@ -20852,6 +20852,9 @@ class FormFieldModel extends FormWidgetModel {
20852
20852
  }
20853
20853
  this.rows.splice(index, 1);
20854
20854
  this.updateChildrenFieldsRowIndex();
20855
+ if (!this.form.values[this.id]) {
20856
+ return;
20857
+ }
20855
20858
  this.form.values[this.id].splice(index, 1);
20856
20859
  this.form.onFormFieldChanged(this);
20857
20860
  }