summaryrefslogtreecommitdiffstats
path: root/webapp/components/search_results_item.jsx
diff options
context:
space:
mode:
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