summaryrefslogtreecommitdiffstats
path: root/webapp/components/rhs_comment.jsx
diff options
context:
space:
mode:
authorBjörn Roland <bjoernr-de@users.noreply.github.com>2017-01-27 14:06:51 +0100
committerJoram Wilander <jwawilander@gmail.com>2017-01-27 08:06:51 -0500
commitcfbace70ca4222e7abba92c5e3af7440539452c7 (patch)
treecdffb2c9f76add8909e5fb657e8590c3956cad61 /webapp/components/rhs_comment.jsx
parentd72547433af3ec5829ce0de4f4e1cfd440be7142 (diff)
downloadchat-cfbace70ca4222e7abba92c5e3af7440539452c7.tar.gz
chat-cfbace70ca4222e7abba92c5e3af7440539452c7.tar.bz2
chat-cfbace70ca4222e7abba92c5e3af7440539452c7.zip
#5108 Add datetime attribute to <time> elements (#5199)
* #5108 Add datetime attribute to <time> elements * fix eslint errors
Diffstat (limited to 'webapp/components/rhs_comment.jsx')
-rw-r--r--webapp/components/rhs_comment.jsx5
1 files changed, 4 insertions, 1 deletions
diff --git a/webapp/components/rhs_comment.jsx b/webapp/components/rhs_comment.jsx
index 885c32b29..26659c7a1 100644
--- a/webapp/components/rhs_comment.jsx
+++ b/webapp/components/rhs_comment.jsx
@@ -478,7 +478,10 @@ export default class RhsComment extends React.Component {
</li>
{botIndicator}
<li className='col'>
- <time className='post__time'>
+ <time
+ className='post__time'
+ dateTime={Utils.getDateForUnixTicks(post.create_at).toISOString()}
+ >
{Utils.getDateForUnixTicks(post.create_at).toLocaleString('en', timeOptions)}
</time>
{flagTrigger}