-
Notifications
You must be signed in to change notification settings - Fork 24.3k
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
Set constructor properly in createReactNativeComponentClass #1471
Conversation
Without this, the displayName property wasn't found when looking at `.constructor` on a component instance. Fixes facebook/react-devtools#92.
@brentvatne: in order to get things to the rc, we have to go through fb internal cherry-pick process and i don't think this is worth it. The goal of the rc is to be as stable as possible and only cherry-pick bug fixes. Cherry-picking features like this makes it harder to figure out what is available in what version. 2 weeks is short enough that we can wait for the next version to get those safely |
This is also not a regression (AFAIK) so that's another reason it can wait. |
Sounds good, thanks for the clarification |
* Uses `eventValue` not `value` * Running prettier on the modified JS
Without this, the displayName property wasn't found when looking at
.constructor
on a component instance. Fixes facebook/react-devtools#92.