Merge pull request #3046 from rubo77/patch-1

Add a   after timestamp
This commit is contained in:
David Baker
2018-01-08 15:00:45 +00:00
committed by GitHub

View File

@@ -30,7 +30,7 @@ module.exports = React.createClass({
const date = new Date(this.props.ts);
return (
<span className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date, this.props.showTwelveHour) }>
{ DateUtils.formatTime(date, this.props.showTwelveHour) }
{ DateUtils.formatTime(date, this.props.showTwelveHour) + '&nbsp;' }
</span>
);
},