mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
header doesn't have a room yet while joining
This commit is contained in:
parent
82a7ecbf25
commit
8fdb94911c
1 changed files with 9 additions and 4 deletions
|
@ -209,10 +209,15 @@ module.exports = React.createClass({
|
|||
const topicElement =
|
||||
<div className="mx_RoomHeader_topic" ref="topic" title={topic} dir="auto">{ topic }</div>;
|
||||
const avatarSize = 28;
|
||||
const roomAvatar = (
|
||||
<RoomAvatar room={this.props.room} width={avatarSize} height={avatarSize} oobData={this.props.oobData}
|
||||
viewAvatarOnClick={true} />
|
||||
);
|
||||
let roomAvatar;
|
||||
if (this.props.room) {
|
||||
roomAvatar = (<RoomAvatar
|
||||
room={this.props.room}
|
||||
width={avatarSize}
|
||||
height={avatarSize}
|
||||
oobData={this.props.oobData}
|
||||
viewAvatarOnClick={true} />);
|
||||
}
|
||||
|
||||
if (this.props.onSettingsClick) {
|
||||
settingsButton =
|
||||
|
|
Loading…
Reference in a new issue