mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
Fixed: Prop type warning on MenuItem
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
parent
60df3d78b4
commit
87cb97407a
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class MenuItem extends Component {
|
||||||
MenuItem.propTypes = {
|
MenuItem.propTypes = {
|
||||||
className: PropTypes.string,
|
className: PropTypes.string,
|
||||||
children: PropTypes.node.isRequired,
|
children: PropTypes.node.isRequired,
|
||||||
isDisabled: PropTypes.node.isRequired
|
isDisabled: PropTypes.bool.isRequired
|
||||||
};
|
};
|
||||||
|
|
||||||
MenuItem.defaultProps = {
|
MenuItem.defaultProps = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue