Skip to content

Commit

Permalink
Fix AutoComplete no longer working when the user tries to select an i…
Browse files Browse the repository at this point in the history
…tem using the mouse.
  • Loading branch information
dvoituron committed Jun 24, 2024
1 parent 48ccb19 commit 3bc802f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Components/List/FluentAutocomplete.razor
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
Required="@Required"
@onclick="@OnDropDownExpandedAsync"
@oninput="@InputHandlerAsync"
@onfocusout="@(e => { IsReachedMaxItems = false; IsMultiSelectOpened = false; })"
@onfocusout="@(e => { IsReachedMaxItems = false; })"
autofocus="@Autofocus"
Style="@ComponentWidth">
@* Selected Items *@
Expand Down

0 comments on commit 3bc802f

Please sign in to comment.