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'm getting errors such as: 11:15 warning 'map' is missing in props validation for Select react/prop-types
11:15 warning 'map' is missing in props validation for Select react/prop-types
in cases where I have inheritance:
export default class Select extends MapTool ....
MapTool.propTypes = { map: React.PropTypes.instanceOf(ol.Map).isRequired, toggleGroup: React.PropTypes.string };
How can I overcome this without having to redeclare all the propTypes from the base class?
The text was updated successfully, but these errors were encountered:
Similar to #68 and #106 but I do not have any real solution for this case right now (beside disabling the react/prop-types rule for this class).
Sorry, something went wrong.
Okay, thanks for the feedback. I'll do just that for now.
No branches or pull requests
I'm getting errors such as:
11:15 warning 'map' is missing in props validation for Select react/prop-types
in cases where I have inheritance:
How can I overcome this without having to redeclare all the propTypes from the base class?
The text was updated successfully, but these errors were encountered: