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/893pull/3046/head
parent
b0319ec0f1
commit
5020307a6c
|
@ -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>
|
||||
);
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue