diff --git a/src/skins/vector/views/molecules/EventAsTextTile.js b/src/skins/vector/views/molecules/EventAsTextTile.js index e8beddf2..ce647445 100644 --- a/src/skins/vector/views/molecules/EventAsTextTile.js +++ b/src/skins/vector/views/molecules/EventAsTextTile.js @@ -33,10 +33,14 @@ module.exports = React.createClass({ var text = TextForEvent.textForEvent(this.props.mxEvent); if (text == null || text.length == 0) return null; - var timestamp = this.props.last ? : null; + var timestamp = ; var avatar = this.props.mxEvent.sender ? : null; + var cssStyles = "mx_MessageTile mx_MessageTile_notice"; + if (this.props.last) { + cssStyles += " mx_MessageTile_last"; + } return ( -
+
{ avatar }