Add a title with the exact date to dateTime elements that use timeAgo.
This commit is contained in:
parent
51552b0c53
commit
92e55c7d5f
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ class DateTime extends React.PureComponent<Props> {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
return <span>{DateTime.getTimeAgoStr(date)}</span>;
|
return <span title={moment(date).format('MMMM Do, YYYY hh:mm A')}>{DateTime.getTimeAgoStr(date)}</span>;
|
||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
Loading…
Reference in a new issue