Skip to content

Commit

Permalink
Merge branch 'master' into chore/deps
Browse files Browse the repository at this point in the history
  • Loading branch information
JounQin authored Sep 24, 2020
2 parents 96985c0 + a4980e9 commit ed6f90f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/form/common-form.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ export class CommonFormControl<T, V = T> implements ControlValueAccessor {

protected emitValueChange(value: T) {
if (this.onChange) {
this.writeValue(value);
this.onChange(value);
this.writeValue(value);
}
this.valueChange.emit(value);
}
Expand Down

0 comments on commit ed6f90f

Please sign in to comment.