mirror of
https://github.com/element-hq/element-web
synced 2024-11-22 01:05:42 +03:00
Add date tooltip to timestamps
This commit is contained in:
parent
4eb0ca63a9
commit
67efb8bde2
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ module.exports = React.createClass({
|
|||
render: function() {
|
||||
var date = new Date(this.props.ts);
|
||||
return (
|
||||
<span className="mx_MessageTimestamp">
|
||||
<span className="mx_MessageTimestamp" title={ DateUtils.formatDate(date) }>
|
||||
{ DateUtils.formatTime(date) }
|
||||
</span>
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue