-
Notifications
You must be signed in to change notification settings - Fork 96
Open
Description
MudSelectExtended causes InvalidCharacterError on .NET 10 in a brand new project.
Steps to reproduce:
- Create new project targeting net10.0 using "Blazor WebAssembly Standalone App" template
- Install MudBlazor and MudBlazor.Extensions (I used MudBlazor 9.0.0-preview2 and Extensions 9.0.0-preview3)
- Follow instructions to add css, script tags, services to Program.cs, using directives in _Imports, etc.
- Create new page:
@page "/Test"
<MudSelectExtended T="string" Label="Data Based" ItemCollection="_collection" />
@code {
private string[] _collection = new string[] { "Foo", "Bar", "Fizz", "Buzz" };
}
Loading page immediately causes:
crit: Microsoft.AspNetCore.Components.WebAssembly.Rendering.WebAssemblyRenderer[100]
Unhandled exception rendering component: InvalidCharacterError: String contains an invalid character
InvalidCharacterError: String contains an invalid character
Metadata
Metadata
Assignees
Labels
No labels