Skip to content

Commit

Permalink
feat(timeline): Reverse item order (#236)
Browse files Browse the repository at this point in the history
Thanks to @Arubinu
  • Loading branch information
skarab42 committed Mar 30, 2021
1 parent fd133b9 commit 5a97e52
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -95,7 +95,7 @@
<div slot="header" class="bg-primary-dark">
<Ruler />
</div>
{#each $items as item, index (item.id)}
{#each [...$items].reverse() as item, index (item.id)}
<Item
bind:item
index="{index}"
Expand Down

0 comments on commit 5a97e52

Please sign in to comment.