Skip to content
This repository has been archived by the owner on Dec 15, 2023. It is now read-only.

Commit

Permalink
Ignore a11y warning
Browse files Browse the repository at this point in the history
  • Loading branch information
arlandfran committed Jul 29, 2021
1 parent a8f7286 commit 7985351
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Leaderboard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@
<option value="">Loading...</option>
</select>
{:else}
<!-- svelte-ignore a11y-no-onchange -->
<select bind:value={$season} on:change={updateSeason}>
{#each seasons as season}
<option value={season}>{season}</option>
Expand All @@ -172,6 +173,7 @@
<option value="">Loading...</option>
</select>
{:else}
<!-- svelte-ignore a11y-no-onchange -->
<select bind:value={$week} on:change={updateItems}>
{#each weeks as week}
<option value={week}>{week.replace("-", " ")}</option>
Expand Down

0 comments on commit 7985351

Please sign in to comment.