1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

Merge pull request #6257 from SimonBrandner/feature/pinned-click

This commit is contained in:
Michael Telatynski
2021-06-25 14:42:18 +01:00
committed by GitHub
7 changed files with 53 additions and 8 deletions

View File

@@ -28,7 +28,7 @@ export default class TextualEvent extends React.Component {
};
render() {
const text = TextForEvent.textForEvent(this.props.mxEvent);
const text = TextForEvent.textForEvent(this.props.mxEvent, true);
if (text == null || text.length === 0) return null;
return (
<div className="mx_TextualEvent">{ text }</div>