Room padlock decorations only if cross-signing is enabled
Put the padlock decorations behind the labs flag as without the context of the shields on the room icons they can be a bit misleading and make people think it means 'encrypted'.
This commit is contained in:
parent
389e1194ff
commit
d53016e8fc
1 changed files with 6 additions and 1 deletions
|
@ -426,6 +426,11 @@ module.exports = createReactClass({
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let privateIcon = null;
|
||||||
|
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) {
|
||||||
|
privateIcon = <div className="mx_RoomTile_PrivateIcon" />;
|
||||||
|
}
|
||||||
|
|
||||||
return <React.Fragment>
|
return <React.Fragment>
|
||||||
<AccessibleButton
|
<AccessibleButton
|
||||||
tabIndex="0"
|
tabIndex="0"
|
||||||
|
@ -444,7 +449,7 @@ module.exports = createReactClass({
|
||||||
{ dmIndicator }
|
{ dmIndicator }
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="mx_RoomTile_PrivateIcon" />
|
{ privateIcon }
|
||||||
<div className="mx_RoomTile_nameContainer">
|
<div className="mx_RoomTile_nameContainer">
|
||||||
<div className="mx_RoomTile_labelContainer">
|
<div className="mx_RoomTile_labelContainer">
|
||||||
{ label }
|
{ label }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue