Skip to content

Commit

Permalink
fix time formatting on webkit
Browse files Browse the repository at this point in the history
  • Loading branch information
ihavenoface committed Feb 2, 2022
1 parent 2028d9a commit 4027c3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/LatestNews/LatestNews.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function LatestNews() {
</a>

<div title={post.published} className="post__published">
Published {formatTime(post.published)}
Published {formatTime(post.published.replace(/ /g,"T"))}
</div>
<hr></hr>

Expand Down

0 comments on commit 4027c3a

Please sign in to comment.