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
I was having the issue #7 and saw it was resolved in the 1.0.3 version however when I download the package and check:
/lib/components/widgets/BaseInput.js
I don't see the modification lines 39 and 40 from dc29dcb
I still have
onBlur: onBlur && function (event, data) { return onBlur(inputProps.id, data.value); }, onFocus: onFocus && function (event, data) { return onFocus(inputProps.id, data.value); }
instead of
onBlur={onBlur && ((event) => onBlur(inputProps.id, event.target.value))} onFocus={onFocus && ((event) => onFocus(inputProps.id, event.target.value))}
am I missing something ?
The text was updated successfully, but these errors were encountered:
Maybe you need to merge the latest into your fork? I have the changes in my fork (which I just merged from the repo)
Sorry, something went wrong.
No branches or pull requests
Description
I was having the issue #7 and saw it was resolved in the 1.0.3 version however when I download the package and check:
I don't see the modification lines 39 and 40 from dc29dcb
I still have
instead of
am I missing something ?
The text was updated successfully, but these errors were encountered: