mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
use full date formats on timestamps - fixes https://github.com/vector-im/riot-web/issues/3874
This commit is contained in:
parent
0e0918d07c
commit
25a727b8d8
@ -25,7 +25,7 @@ module.exports = React.createClass({
|
||||
render: function() {
|
||||
var date = new Date(this.props.ts);
|
||||
return (
|
||||
<span className="mx_MessageTimestamp" title={ DateUtils.formatDate(date) }>
|
||||
<span className="mx_MessageTimestamp" title={ DateUtils.formatFullDate(date) }>
|
||||
{ DateUtils.formatTime(date) }
|
||||
</span>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user