Add a   after timestamp

This solves part of the problem that the timestamp is  gluing at the message, when copied in your clipboard.

Example:

    23:02test message

see https://github.com/vector-im/riot-web/issues/893
This commit is contained in:
Ruben Barkow 2017-01-02 01:44:04 +01:00 committed by rubo77
parent b0319ec0f1
commit 5020307a6c

View File

@ -26,9 +26,8 @@ module.exports = React.createClass({
var date = new Date(this.props.ts); var date = new Date(this.props.ts);
return ( return (
<span className="mx_MessageTimestamp"> <span className="mx_MessageTimestamp">
{ DateUtils.formatTime(date) } { DateUtils.formatTime(date)+'&nbsp;' }
</span> </span>
); );
}, },
}); });