Fix lints
Signed-off-by: Robin Townsend <robin@robin.town>
This commit is contained in:
parent
adb5df52a4
commit
c0e10218d9
2 changed files with 4 additions and 4 deletions
|
@ -32,7 +32,7 @@ export default class TextualEvent extends React.Component<IProps> {
|
|||
|
||||
public render() {
|
||||
const text = TextForEvent.textForEvent(this.props.mxEvent, true, this.context?.showHiddenEventsInTimeline);
|
||||
if (text == null || text.length === 0) return null;
|
||||
if (!text) return null;
|
||||
return <div className="mx_TextualEvent">{ text }</div>;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue