Skip to content

Commit

Permalink
Merge pull request #5944 from vector-im/revert-3046-patch-1
Browse files Browse the repository at this point in the history
Revert "Add a   after timestamp"
  • Loading branch information
dbkr authored Jan 8, 2018
2 parents a21bbd1 + 24e16e5 commit 1405859
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/views/messages/MessageTimestamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -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>
);
},
Expand Down

0 comments on commit 1405859

Please sign in to comment.