Closed
![@ghost](https://github.com/ghost.png?size=80)
Description
I have a simple fast-button in the disabled state. It may not be in disabled state and then the Click event is valid.
<fast-button disabled="@Disabled" @onclick="@OnDisClick">
Disabled
</fast-button>
The JSInterop for blazor for the click event...
private async Task OnDisClick(MouseEventArgs args)
{
await JsInteropService.AlertAsync("Disabled Click");
}
The button is correctly rendered and shows the disabled icon but if I click the onclick event calls OnDisClick...
Visual Studio 2019
Blazor WebAssembly