Skip to content

Commit

Permalink
fix(forms): TextValueAccessor raises onTouched on blur. (#1230)
Browse files Browse the repository at this point in the history
  • Loading branch information
vultix authored and manoldonev committed Jul 24, 2018
1 parent 21010a0 commit 06ca3a0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export type TextView = {text: string} & View;
"search-bar[ngModel], search-bar[formControlName],search-bar[formControl]",
providers: [TEXT_VALUE_ACCESSOR],
host: {
"(touch)": "onTouched()",
"(blur)": "onTouched()",
"(textChange)": "onChange($event.value)",
},
})
Expand Down

0 comments on commit 06ca3a0

Please sign in to comment.