Skip to content

fix: FluentSelect Multiple is always expanded #792

@mattgoedde

Description

@mattgoedde

🐛 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.
image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions