only let people add aliases if they canSeetAliases

This commit is contained in:
Matthew Hodgson 2016-03-22 12:54:08 +00:00
parent 80416fe583
commit 385e1ca1fb

View File

@ -289,6 +289,7 @@ module.exports = React.createClass({
);
})}
{ this.props.canSetAliases ?
<div className="mx_RoomSettings_aliasesTableRow" key="new">
<EditableText
ref="add_alias"
@ -301,7 +302,8 @@ module.exports = React.createClass({
<img src="img/plus.svg" width="14" height="14" alt="Add"
onClick={ self.onAliasAdded.bind(self, undefined) }/>
</div>
</div>
</div> : ""
}
</div>
{ remote_aliases_section }