Skip to content

Commit

Permalink
Merge pull request #72 from JonasCz/reverse-list
Browse files Browse the repository at this point in the history
reversed transcription list display
  • Loading branch information
pluja committed Dec 30, 2023
2 parents 03f3b54 + 77ed0c3 commit 87fa20c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
{/if}
<div class="items-center mb-0 text-center card-body">
{#if $transcriptions.length > 0}
{#each $transcriptions as tr (tr.id)}
{#each $transcriptions.slice().reverse() as tr (tr.id)}
{#if tr.status == 2}
<SuccessTranscription {tr} on:download={handleDownload} on:translate={handleTranslate} />
{/if}
Expand Down

0 comments on commit 87fa20c

Please sign in to comment.