trailing commas

This commit is contained in:
Luke Barnard 2016-11-10 17:27:59 +00:00
parent 3ec7940d12
commit 87e8f0e4da

View file

@ -30,7 +30,7 @@ module.exports = React.createClass({
height: React.PropTypes.number, height: React.PropTypes.number,
resizeMethod: React.PropTypes.string, resizeMethod: React.PropTypes.string,
// Whether the onClick of the avatar should dispatch 'view_user' // Whether the onClick of the avatar should dispatch 'view_user'
viewUserOnClick: React.PropTypes.boolean viewUserOnClick: React.PropTypes.boolean,
}, },
getDefaultProps: function() { getDefaultProps: function() {
@ -38,7 +38,7 @@ module.exports = React.createClass({
width: 40, width: 40,
height: 40, height: 40,
resizeMethod: 'crop', resizeMethod: 'crop',
viewUserOnClick: false viewUserOnClick: false,
} }
}, },