@dataclouder/ngx-core 0.1.48 → 0.1.49

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.
@@ -3726,7 +3726,7 @@ class FormUtilsService {
3726
3726
  });
3727
3727
  }
3728
3728
  patchLearnableFormGroup(form, data) {
3729
- if (data.tags) {
3729
+ if (data && data?.tags) {
3730
3730
  this.patchFormArray(form.controls.tags, data.tags);
3731
3731
  }
3732
3732
  }