Skip to content
New issue

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

last release is missing commits #95

Open
n-dragon opened this issue Jan 21, 2019 · 1 comment
Open

last release is missing commits #95

n-dragon opened this issue Jan 21, 2019 · 1 comment

Comments

@n-dragon
Copy link

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:

 /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 ?

@mikkelking
Copy link

Maybe you need to merge the latest into your fork? I have the changes in my fork (which I just merged from the repo)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants