Hello ,
I am using Blazor wasm + net core 5.
When updating syncfusion to the latest version I get this error in buttons that are inside an edit form (the buttons have the assignment HtmlAttributes, except for a button that performs the submit):
System.InvalidOperationException: The property 'HtmlAttributes' on component type 'Syncfusion.Blazor.Buttons.SfButton' cannot be set explicitly when also used to capture unmatched values. Unmatched values: ID
The buttons have this variable assigned
public Dictionary <string, object> HtmlAttribute {get; set; } =
new Dictionary <string, object> () {{"type", "button"}};
Could you tell me how to correct it?