Skip to content

Commit

Permalink
feat(rank): clarify semantics of zero labs preferred
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiDood committed Aug 10, 2024
1 parent d265672 commit f92c56a
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions app/src/routes/dashboard/(draft)/ranks/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,14 @@
You have already submitted your lab preferences for this draft last <strong>{creationDate}</strong> at
<strong>{creationTime}</strong>.
</p>
<ol>
{#each labs as lab}
<li>{lab}</li>
{/each}
</ol>
{#if labs.length > 0}
<ol>
{#each labs as lab}
<li>{lab}</li>
{/each}
</ol>
{:else}
<p>You have selected none of the labs. You will thus skip ahead to the lottery phase.</p>
{/if}
</div>
{/if}

0 comments on commit f92c56a

Please sign in to comment.