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:
parent
b0319ec0f1
commit
5020307a6c
1 changed files with 1 additions and 2 deletions
|
@ -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)+' ' }
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue