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:
@@ -26,9 +26,8 @@ module.exports = React.createClass({
|
||||
var date = new Date(this.props.ts);
|
||||
return (
|
||||
<span className="mx_MessageTimestamp">
|
||||
{ DateUtils.formatTime(date) }
|
||||
{ DateUtils.formatTime(date)+' ' }
|
||||
</span>
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user