Updating timestamp format

This commit is contained in:
wmwragg 2016-08-16 15:01:25 +01:00
parent 650a0f1c1f
commit 95418089f3
2 changed files with 2 additions and 2 deletions

View file

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