mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 09:46:09 +03:00
Place RoomHeader privacy padlocks behind the crosssigning feature flag
This commit is contained in:
parent
397637d59d
commit
f617fb7bbe
1 changed files with 4 additions and 1 deletions
|
@ -163,6 +163,9 @@ module.exports = createReactClass({
|
|||
const joinRule = joinRules && joinRules.getContent().join_rule;
|
||||
const joinRuleClass = classNames("mx_RoomHeader_PrivateIcon",
|
||||
{"mx_RoomHeader_isPrivate": joinRule === "invite"});
|
||||
const privateIcon = SettingsStore.isFeatureEnabled("feature_cross_signing") ?
|
||||
<div className={joinRuleClass} /> :
|
||||
undefined;
|
||||
|
||||
if (this.props.onCancelClick) {
|
||||
cancelButton = <CancelButton onClick={this.props.onCancelClick} />;
|
||||
|
@ -308,7 +311,7 @@ module.exports = createReactClass({
|
|||
<div className="mx_RoomHeader_wrapper">
|
||||
<div className="mx_RoomHeader_avatar">{ roomAvatar }</div>
|
||||
{ e2eIcon }
|
||||
<div className={joinRuleClass} />
|
||||
{ privateIcon }
|
||||
{ name }
|
||||
{ topicElement }
|
||||
{ cancelButton }
|
||||
|
|
Loading…
Reference in a new issue