Skip to content

Commit

Permalink
fix: revert searchable minimum back to "> 5"
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed Jan 23, 2025
1 parent eec84d5 commit 2187168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/desktop/src/components/Select.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
style:max-height={maxHeightState && `${maxHeightState}px`}
>
<ScrollableContainer initiallyVisible>
{#if searchable && options.length >= 3}
{#if searchable && options.length > 5}
<SearchItem bind:searchValue />
{/if}
<OptionsGroup>
Expand Down

0 comments on commit 2187168

Please sign in to comment.