@kms-ngx-ui/presentational 20.3.3 → 20.3.6

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.
@@ -3818,8 +3818,8 @@ class DynamicFieldDirective {
3818
3818
  if (syncing)
3819
3819
  return;
3820
3820
  syncing = true;
3821
- control.setValue(val);
3822
3821
  control.markAsDirty();
3822
+ control.setValue(val);
3823
3823
  syncing = false;
3824
3824
  });
3825
3825
  }
@@ -4414,7 +4414,7 @@ class GenericFormComponent {
4414
4414
  if (val !== this.lastEmittedValue) {
4415
4415
  const fg = this.formService.getFormGroup();
4416
4416
  if (fg) {
4417
- this.formService.patchValue(val, { silent: true });
4417
+ this.formService.patchValue(val);
4418
4418
  }
4419
4419
  }
4420
4420
  });