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 =
|
const topicElement =
|
||||||
<div className="mx_RoomHeader_topic" ref="topic" title={topic} dir="auto">{ topic }</div>;
|
<div className="mx_RoomHeader_topic" ref="topic" title={topic} dir="auto">{ topic }</div>;
|
||||||
const avatarSize = 28;
|
const avatarSize = 28;
|
||||||
const roomAvatar = (
|
let roomAvatar;
|
||||||
<RoomAvatar room={this.props.room} width={avatarSize} height={avatarSize} oobData={this.props.oobData}
|
if (this.props.room) {
|
||||||
viewAvatarOnClick={true} />
|
roomAvatar = (<RoomAvatar
|
||||||
);
|
room={this.props.room}
|
||||||
|
width={avatarSize}
|
||||||
|
height={avatarSize}
|
||||||
|
oobData={this.props.oobData}
|
||||||
|
viewAvatarOnClick={true} />);
|
||||||
|
}
|
||||||
|
|
||||||
if (this.props.onSettingsClick) {
|
if (this.props.onSettingsClick) {
|
||||||
settingsButton =
|
settingsButton =
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue