mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-01-23 17:16:26 +01:00
Fix range order
This commit is contained in:
parent
afb1f6d520
commit
0fd378811f
1 changed files with 1 additions and 1 deletions
|
@ -808,8 +808,8 @@ function Catchup() {
|
||||||
<p>
|
<p>
|
||||||
<b class="ib">
|
<b class="ib">
|
||||||
{formatRange(
|
{formatRange(
|
||||||
new Date(posts[posts.length - 1].createdAt),
|
|
||||||
new Date(posts[0].createdAt),
|
new Date(posts[0].createdAt),
|
||||||
|
new Date(posts[posts.length - 1].createdAt),
|
||||||
)}
|
)}
|
||||||
</b>
|
</b>
|
||||||
</p>
|
</p>
|
||||||
|
|
Loading…
Reference in a new issue