Removed timestamp tooltips from posts in the RHS

Этот коммит содержится в:
hmhealey
2015-09-24 11:25:36 -04:00
родитель d5343f997d
Коммит 32feec5b66
2 изменённых файлов: 2 добавлений и 8 удалений

Просмотреть файл

@@ -186,10 +186,7 @@ export default class RhsComment extends React.Component {
<strong><UserProfile userId={post.user_id} /></strong>
</li>
<li className='post-header-col'>
<time
className='post-profile-time'
title={new Date(post.create_at).toString()}
>
<time className='post-profile-time'>
{Utils.displayCommentDateTime(post.create_at)}
</time>
</li>

Просмотреть файл

@@ -133,10 +133,7 @@ export default class RhsRootPost extends React.Component {
<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-profile-time'
title={new Date(post.create_at).toString()}
>
<time className='post-profile-time'>
{utils.displayCommentDateTime(post.create_at)}
</time>
</li>