Skip to content

Commit

Permalink
add colon to timestamp
Browse files Browse the repository at this point in the history
This solves part of the problem that the timestamp is  gluing at the message, when copied in your clipboard.

Example:

    23:02test message

see element-hq#893
  • Loading branch information
rubo77 authored Jan 2, 2017
1 parent b0319ec commit 43dd80e
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 @@ -26,7 +26,7 @@ module.exports = React.createClass({
var date = new Date(this.props.ts);
return (
<span className="mx_MessageTimestamp">
{ DateUtils.formatTime(date) }
{ DateUtils.formatTime(date)+':' }
</span>
);
},
Expand Down

0 comments on commit 43dd80e

Please sign in to comment.