Lint
This commit is contained in:
parent
58ec732fb3
commit
0b96871be4
2 changed files with 2 additions and 2 deletions
|
@ -154,7 +154,7 @@ module.exports = withMatrixClient(React.createClass({
|
||||||
|
|
||||||
const avatarUrl = this.props.matrixClient.mxcUrlToHttp(
|
const avatarUrl = this.props.matrixClient.mxcUrlToHttp(
|
||||||
this.props.groupMember.avatarUrl,
|
this.props.groupMember.avatarUrl,
|
||||||
36, 36, 'crop'
|
36, 36, 'crop',
|
||||||
);
|
);
|
||||||
|
|
||||||
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
|
||||||
|
|
|
@ -50,7 +50,7 @@ export default withMatrixClient(React.createClass({
|
||||||
const name = this.props.member.displayname || this.props.member.userId;
|
const name = this.props.member.displayname || this.props.member.userId;
|
||||||
const avatarUrl = this.props.matrixClient.mxcUrlToHttp(
|
const avatarUrl = this.props.matrixClient.mxcUrlToHttp(
|
||||||
this.props.member.avatarUrl,
|
this.props.member.avatarUrl,
|
||||||
36, 36, 'crop'
|
36, 36, 'crop',
|
||||||
);
|
);
|
||||||
|
|
||||||
const av = (
|
const av = (
|
||||||
|
|
Loading…
Reference in a new issue