🐛 Bug Report
When multiple is true, the FluentSelect dropdown is always expanded. This appears to also be the case in the documentation website.
💻 Repro or Code Sample
<FluentSelect TOption="Person"
Items="@Data.People"
Id="people-listbox2"
Multiple="true"
OptionValue="@(p => p.PersonId.ToString())"
OptionText="@(p => p.LastName + ", " + p.FirstName)"
@bind-Value="@SelectedValue"
@bind-SelectedOptions="@SelectedOptions" />
🤔 Expected Behavior
The dropdown should start closed (open=false) and be open-able and close-able.
😯 Current Behavior
The dropdown is stuck open.
