Skip to content

Commit

Permalink
Apply to canceled tickets list
Browse files Browse the repository at this point in the history
  • Loading branch information
everywherejacobkim committed Nov 11, 2023
1 parent 87d7c1d commit 78bbba1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/AdminTable.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
<th class="text-lg font-semibold"></th>
</tr>

{#each $cancelledTickets as ticket, index (ticket.id)}
{#each $cancelledTickets.slice().reverse() as ticket, index (ticket.id)}
<tr class="border text-center">
<td>{index + 1}</td>
<td>{ticket.createdAt.toDate().toLocaleDateString()}</td>
Expand Down

0 comments on commit 78bbba1

Please sign in to comment.