Skip to content

Commit

Permalink
fix: fix onblur config issue (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
gili-lumigo committed Jul 31, 2022
1 parent 5892c75 commit 0a2cc53
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ export class ControlErrorsDirective implements OnInit, OnDestroy {

controlErrorsOn: {
async: this.controlErrorsOnAsync ?? this.config.controlErrorsOn?.async ?? true,
blur: this.controlErrorsOnAsync ?? this.config.controlErrorsOn?.blur ?? true,
blur: this.controlErrorsOnBlur ?? this.config.controlErrorsOn?.blur ?? true,
change: this.controlErrorsOnChange ?? this.config.controlErrorsOn?.change ?? false
}
};
Expand Down

0 comments on commit 0a2cc53

Please sign in to comment.