mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
trailing commas
This commit is contained in:
parent
3ec7940d12
commit
87e8f0e4da
1 changed files with 2 additions and 2 deletions
|
@ -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,
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue