Skip to content

Commit

Permalink
fix(form-react): binding of handleChangeBound function
Browse files Browse the repository at this point in the history
  • Loading branch information
gutentag2012 committed May 26, 2024
1 parent 3d57553 commit ef65472
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/form-react/src/field/field.context.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ export function fieldLogicToFieldContext<

castedLogic.handleBlur = castedLogic.handleBlur.bind(castedLogic)
castedLogic.handleChange = castedLogic.handleChange.bind(castedLogic)
castedLogic.handleChangeBound = castedLogic.handleChangeBound.bind(castedLogic)
castedLogic.handleTouched = castedLogic.handleTouched.bind(castedLogic)

return castedLogic
Expand Down

0 comments on commit ef65472

Please sign in to comment.