-
Notifications
You must be signed in to change notification settings - Fork 24.4k
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
Updated ExplorerPage to use static title field #5118
Conversation
Statics field was never used, I came with intent to remove it. I changed course when I noticed that this title matched the static.
Thank you for your pull request and welcome to our community. We require contributors to sign our Contributor License Agreement, and we don't seem to have you on file. In order for us to review and merge your code, please sign up at https://code.facebook.com/cla - and if you have received this in error or have any questions, please drop us a line at [email protected]. Thanks! |
@@ -44,7 +44,7 @@ var ToolbarAndroidExample = React.createClass({ | |||
}, | |||
render: function() { | |||
return ( | |||
<UIExplorerPage title="<ToolbarAndroid>"> | |||
<UIExplorerPage title={statics.title}> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no-undef: "statics" is not defined.
@kwelch updated the pull request. |
First off, thanks for the PR! However, it doesn't really make sense to me why we're updating exactly one example to be like this... I'd probably be ok with updating all of them, but really I don't think it's worth your time doing -- this isn't really much of an issue :) |
Statics field was never used, I came with intent to remove it. I changed course when I noticed that this title matched the static.