Use correct prop types

This commit is contained in:
Luke Barnard 2016-11-11 13:55:32 +00:00
parent 2a1d32f4d5
commit 5109833c42

View file

@ -30,9 +30,9 @@ module.exports = React.createClass({
height: React.PropTypes.number, height: React.PropTypes.number,
resizeMethod: React.PropTypes.string, resizeMethod: React.PropTypes.string,
// The onClick to give the avatar // The onClick to give the avatar
onClick: React.PropTypes.function, onClick: React.PropTypes.func,
// Whether the onClick of the avatar should be overriden to dispatch 'view_user' // Whether the onClick of the avatar should be overriden to dispatch 'view_user'
viewUserOnClick: React.PropTypes.boolean, viewUserOnClick: React.PropTypes.bool,
}, },
getDefaultProps: function() { getDefaultProps: function() {