Skip to content
This repository has been archived by the owner on Mar 6, 2018. It is now read-only.

Commit

Permalink
Fix Col propTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
argelius committed May 17, 2016
1 parent 1b938a2 commit a59bdd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Col.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Col.propTypes = {
* [en]The width of the column. Valid values are css width values ("10%", 50).[/en]
* [ja][/ja]
*/
width: React.PropTypes.oneOf(React.PropTypes.string, React.PropTypes.string)
width: React.PropTypes.oneOfType([React.PropTypes.number, React.PropTypes.string])
};

export default Col;

0 comments on commit a59bdd8

Please sign in to comment.