Show displayname & avatar url in group member list

This commit is contained in:
David Baker 2017-09-22 14:52:52 +01:00
parent 45c4eeba01
commit 4a36e32c8d
3 changed files with 11 additions and 4 deletions

View file

@ -47,10 +47,13 @@ export default withMatrixClient(React.createClass({
const BaseAvatar = sdk.getComponent('avatars.BaseAvatar');
const EntityTile = sdk.getComponent('rooms.EntityTile');
const name = this.props.member.userId;
const name = this.props.member.displayname || this.props.member.userId;
const av = (
<BaseAvatar name={this.props.member.userId} width={36} height={36} />
<BaseAvatar name={this.props.member.userId}
width={36} height={36}
url={this.props.matrixClient.mxcUrlToHttp(this.props.member.avatarUrl)}
/>
);
return (