Skip to content

Commit

Permalink
fix: Fixes dropdown in event modal not using the correct class
Browse files Browse the repository at this point in the history
  • Loading branch information
valentine195 committed Apr 4, 2024
1 parent dacf469 commit cd120e0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/settings/modals/event/Info/Info.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,11 @@
<div class="setting-item">
<SettingItem>
<div slot="name">Event category</div>
<select slot="control" bind:value={$event.category}>
<select
slot="control"
class="dropdown"
bind:value={$event.category}
>
{#each $store.categories as category}
<option
value={category.id}
Expand Down

0 comments on commit cd120e0

Please sign in to comment.