You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FWIW it's easy to add this yourself before render:
feed.items.sort((a, b) => b.date - a.date)
will do a reverse sort (newest to oldest). I could see potentially changing that sort if you had posts with an "original published date" and an "updated date" — perhaps you'd want to bubble the newly updated posts to the top.
If my recordset is not sorted by descending date my feed is out of order. It would be nice if there was a sort before the render.
I noticed this behavior this when I added items to the feed from multiple async sources.
The text was updated successfully, but these errors were encountered: