diff --git a/src/form/common-form.ts b/src/form/common-form.ts index ffcddb8d3..a5258825c 100644 --- a/src/form/common-form.ts +++ b/src/form/common-form.ts @@ -63,8 +63,8 @@ export class CommonFormControl implements ControlValueAccessor { protected emitValueChange(value: T) { if (this.onChange) { - this.writeValue(value); this.onChange(value); + this.writeValue(value); } this.valueChange.emit(value); }