summaryrefslogtreecommitdiffstats
path: root/webapp/components/search_results_item.jsx
diff options
context:
space:
mode:
authorBjörn Roland <bjoernr-de@users.noreply.github.com>2017-02-08 17:38:59 +0100
committerJoram Wilander <jwawilander@gmail.com>2017-02-08 08:38:59 -0800
commit829f3cce9520fae81712a10bc2184315ad6ad107 (patch)
treea9615e59d02fe22c87c4aab56b1d3c23f6304446 /webapp/components/search_results_item.jsx
parent82779453631916bcd4d88f987b34cb6246239f6d (diff)
downloadchat-829f3cce9520fae81712a10bc2184315ad6ad107.tar.gz
chat-829f3cce9520fae81712a10bc2184315ad6ad107.tar.bz2
chat-829f3cce9520fae81712a10bc2184315ad6ad107.zip
#5108 Use <time> element for channel headers and search result headers (#5331)
Diffstat (limited to 'webapp/components/search_results_item.jsx')
-rw-r--r--webapp/components/search_results_item.jsx15
1 files changed, 9 insertions, 6 deletions
diff --git a/webapp/components/search_results_item.jsx b/webapp/components/search_results_item.jsx
index be62653c0..f0096a324 100644
--- a/webapp/components/search_results_item.jsx
+++ b/webapp/components/search_results_item.jsx
@@ -241,17 +241,20 @@ export default class SearchResultsItem extends React.Component {
);
}
+ const postCreateDate = new Date(Utils.getDateForUnixTicks(post.create_at).setUTCHours(0, 0, 0, 0));
return (
<div className='search-item__container'>
<div className='date-separator'>
<hr className='separator__hr'/>
<div className='separator__text'>
- <FormattedDate
- value={post.create_at}
- day='numeric'
- month='long'
- year='numeric'
- />
+ <time dateTime={postCreateDate.toISOString()}>
+ <FormattedDate
+ value={postCreateDate}
+ day='numeric'
+ month='long'
+ year='numeric'
+ />
+ </time>
</div>
</div>
<div