@klippa/ngx-enhancy-forms 14.22.15 → 14.22.16
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.
|
@@ -190,7 +190,7 @@ class FormComponent {
|
|
|
190
190
|
if (isValueSet(valueBeforeInject)) {
|
|
191
191
|
this.formGroup.patchValue(valueBeforeInject, { emitEvent: false });
|
|
192
192
|
}
|
|
193
|
-
injectInto.setControl(injectAt, this.formGroup);
|
|
193
|
+
injectInto.setControl(injectAt, this.formGroup, { emitEvent: false });
|
|
194
194
|
this.onInjected.emit(valueBeforeInject);
|
|
195
195
|
}
|
|
196
196
|
else if (injectInto instanceof UntypedFormGroup) {
|
|
@@ -204,7 +204,7 @@ class FormComponent {
|
|
|
204
204
|
if (isValueSet(valueBeforeInject)) {
|
|
205
205
|
this.formGroup.patchValue(valueBeforeInject, { emitEvent: false });
|
|
206
206
|
}
|
|
207
|
-
injectInto.setControl(injectAt, this.formGroup);
|
|
207
|
+
injectInto.setControl(injectAt, this.formGroup, { emitEvent: false });
|
|
208
208
|
this.onInjected.emit(valueBeforeInject);
|
|
209
209
|
}
|
|
210
210
|
}
|