Blazor Dropdown

I can't seem to get the Dropdown to work when using Multiple="true".

I'm testing a very basic case, as seen below:

// Multiple selection crashes the browser.
<RadzenDropDown @bind-Value="selectedOptions" Data="options" Multiple="true" Placeholder="Select...">

// Single selection works fine.
<RadzenDropDown @bind-Value="singleValue" Data="options" Placeholder="Select...">

@code {
List options = new List { "1", "2", "3" };
List selectedOptions = new List();
string singleValue;
}

What am I doing wrong?

Edit: Notice that the Lists are both of type string but it won't show in the post.

You want multiple selection of primitive values, right? Fix will be available in the next version (early next week).

That would be excellent. Thanks for the quick reply.