We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Example:
onClick={props::handleCreateDealerHistoryReportClick}
Which is the same as handleCreateDealerHistoryReportClick.bind(props) assuming this is props in a stateless function component.
handleCreateDealerHistoryReportClick.bind(props)
this
props
The text was updated successfully, but these errors were encountered:
That should actually be erroring out on the jsx-no-bind rule :-p but this should still be fixed.
jsx-no-bind
Sorry, something went wrong.
@ljharb if you have jsx-no-bind turned off and have jsx-handler-names turned on this will error out.
jsx-handler-names
faaa823
@evcohen did you submit a PR for this?
@rodoabad I PR'ed for reporting error on jsx-no-bind using ES7 bind operator.
No branches or pull requests
Example:
onClick={props::handleCreateDealerHistoryReportClick}
Which is the same as
handleCreateDealerHistoryReportClick.bind(props)
assumingthis
isprops
in a stateless function component.The text was updated successfully, but these errors were encountered: