Skip to content
This repository has been archived by the owner on Oct 19, 2021. It is now read-only.

Commit

Permalink
fix(OverflowMenuItem): use PropTypes module (#100)
Browse files Browse the repository at this point in the history
A recent change used the React PropTypes property instead of the React one.

Fixes #99
  • Loading branch information
eddiemonge authored and chrisdhanaraj committed Jul 17, 2017
1 parent 947d4e3 commit 5504cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/OverflowMenuItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const propTypes = {
onMouseEnter: PropTypes.func,
onMouseLeave: PropTypes.func,
onMouseUp: PropTypes.func,
closeMenu: React.PropTypes.func,
closeMenu: PropTypes.func,
};

const defaultProps = {
Expand Down

1 comment on commit 5504cad

@chrisdhanaraj
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bluemix toolchain: Delivery Pipeline deployed carbon-components-react to Bluemix Design System, including this commit

Please sign in to comment.