1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-11 20:22:36 +03:00

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,
resizeMethod: React.PropTypes.string,
// 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'
viewUserOnClick: React.PropTypes.boolean,
viewUserOnClick: React.PropTypes.bool,
},
getDefaultProps: function() {