Added a tooltip to post timestamps displaying the actual time the post was created
Этот коммит содержится в:
@@ -132,7 +132,14 @@ export default class RhsRootPost extends React.Component {
|
||||
<div className='post__content'>
|
||||
<ul className='post-header'>
|
||||
<li className='post-header-col'><strong><UserProfile userId={post.user_id} /></strong></li>
|
||||
<li className='post-header-col'><time className='post-right-root-time'>{utils.displayCommentDateTime(post.create_at)}</time></li>
|
||||
<li className='post-header-col'>
|
||||
<time
|
||||
className='post-profile-time'
|
||||
title={new Date(post.create_at).toString()}
|
||||
>
|
||||
{utils.displayCommentDateTime(post.create_at)}
|
||||
</time>
|
||||
</li>
|
||||
<li className='post-header-col post-header__reply'>
|
||||
<div className='dropdown'>
|
||||
{ownerOptions}
|
||||
|
||||
Ссылка в новой задаче
Block a user