mirror of https://github.com/vector-im/riot-web
Don't show blank EventAsText tiles
parent
001d1c50ef
commit
7a8537f3dc
|
@ -31,6 +31,8 @@ module.exports = React.createClass({
|
|||
|
||||
render: function() {
|
||||
var text = TextForEvent.textForEvent(this.props.mxEvent);
|
||||
if (text == null || text.length == 0) return null;
|
||||
|
||||
var timestamp = this.props.last ? <MessageTimestamp ts={this.props.mxEvent.getTs()} /> : null;
|
||||
return (
|
||||
<div className="mx_MessageTile mx_MessageTile_notice">
|
||||
|
|
Loading…
Reference in New Issue