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

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