summaryrefslogtreecommitdiffstats
path: root/web/react/components/post_info.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-09-24 11:36:32 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-09-24 11:36:32 -0400
commit44e00a4f9cfcb3f0ac8f29abad60de93178a48e0 (patch)
tree5e27d0368189616e7416d4f484823936364e9c78 /web/react/components/post_info.jsx
parent32feec5b66d114fe8b30c745ba6d587a82ea6b23 (diff)
downloadchat-44e00a4f9cfcb3f0ac8f29abad60de93178a48e0.tar.gz
chat-44e00a4f9cfcb3f0ac8f29abad60de93178a48e0.tar.bz2
chat-44e00a4f9cfcb3f0ac8f29abad60de93178a48e0.zip
Changed format of date tooltips
Diffstat (limited to 'web/react/components/post_info.jsx')
-rw-r--r--web/react/components/post_info.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/components/post_info.jsx b/web/react/components/post_info.jsx
index d2a0a4035..c38edf6a2 100644
--- a/web/react/components/post_info.jsx
+++ b/web/react/components/post_info.jsx
@@ -153,7 +153,7 @@ export default class PostInfo extends React.Component {
<li className='post-header-col'>
<time
className='post-profile-time'
- title={new Date(post.create_at).toString()}
+ title={`${utils.displayDate(post.create_at)} at ${utils.displayTime(post.create_at)}`}
>
{utils.displayDateTime(post.create_at)}
</time>