Appease the linter and de-dupe code
parent
33044d713e
commit
b4e60af61f
|
@ -939,25 +939,20 @@ class E2ePadlock extends React.Component {
|
||||||
const Tooltip = sdk.getComponent("elements.Tooltip");
|
const Tooltip = sdk.getComponent("elements.Tooltip");
|
||||||
tooltip = <Tooltip className="mx_EventTile_e2eIcon_tooltip" label={this.props.title} dir="auto" />;
|
tooltip = <Tooltip className="mx_EventTile_e2eIcon_tooltip" label={this.props.title} dir="auto" />;
|
||||||
}
|
}
|
||||||
if (SettingsStore.getValue("alwaysShowEncryptionIcons")) {
|
|
||||||
return (
|
let classes = `mx_EventTile_e2eIcon mx_EventTile_e2eIcon_${this.props.icon}`;
|
||||||
<div
|
if (!SettingsStore.getValue("alwaysShowEncryptionIcons")) {
|
||||||
className={`mx_EventTile_e2eIcon mx_EventTile_e2eIcon_${this.props.icon}`}
|
classes += ' mx_EventTile_e2eIcon_hidden';
|
||||||
onClick={this.onClick}
|
|
||||||
onMouseEnter={this.onHoverStart}
|
|
||||||
onMouseLeave={this.onHoverEnd}
|
|
||||||
>{tooltip}</div>
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
return (
|
|
||||||
<div
|
|
||||||
className={`mx_EventTile_e2eIcon mx_EventTile_e2eIcon_hidden mx_EventTile_e2eIcon_${this.props.icon}`}
|
|
||||||
onClick={this.onClick}
|
|
||||||
onMouseEnter={this.onHoverStart}
|
|
||||||
onMouseLeave={this.onHoverEnd}
|
|
||||||
>{tooltip}</div>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={classes}
|
||||||
|
onClick={this.onClick}
|
||||||
|
onMouseEnter={this.onHoverStart}
|
||||||
|
onMouseLeave={this.onHoverEnd}
|
||||||
|
>{tooltip}</div>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue