Skip to content

Commit

Permalink
Resolve bug in incorrect color after deselecting timeslot
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanyychen committed Dec 26, 2024
1 parent a25689b commit 6455597
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/Pages/InterviewSchedule.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@
<div style="margin-left: 50px">
<form>
<select bind:value={inductee_option} name="inductees">
<option value="all">Filter by Inductee</option>
<option value={{0: "all"}}>Filter by Inductee</option>
{#each inductees as inductee}
<option value={inductee}>{inductee[1]}</option>
{/each}
Expand Down

0 comments on commit 6455597

Please sign in to comment.