mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +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,
|
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,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue