mirror of
https://github.com/Readarr/Readarr
synced 2026-01-03 14:16:04 +01: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 = {
|
||||
className: PropTypes.string,
|
||||
children: PropTypes.node.isRequired,
|
||||
isDisabled: PropTypes.node.isRequired
|
||||
isDisabled: PropTypes.bool.isRequired
|
||||
};
|
||||
|
||||
MenuItem.defaultProps = {
|
||||
|
|
|
|||
Loading…
Reference in a new issue