1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-18 21:35:27 -04:00

Fixed prop type warning on MenuItem

This commit is contained in:
Mark McDowall
2019-08-15 21:06:04 -07:00
parent 78ee6afbae
commit 0df464ac03
+1 -1
View File
@@ -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 = {