Revert "Add a   after timestamp"

pull/5944/head
David Baker 2018-01-08 15:17:05 +00:00 committed by GitHub
parent a21bbd15c5
commit 24e16e5c18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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) + '&nbsp;' }
{ DateUtils.formatTime(date, this.props.showTwelveHour) }
</span>
);
},