We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When creating a InputCheckbox where value is true the checkbox is still unchecked.
Steps to reproduce the behavior:
<EditForm Model="this"> <h4>Checkbox</h4> <InputCheckbox bind-Value="@Visible"></InputCheckbox> </EditForm> @functions{ [Parameter] protected bool Visible { get; set; } = true; }
The checkbox should be checked
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="0.9.0-preview3-19154-02" /> <PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.9.0-preview3-19154-02" PrivateAssets="all" />
The text was updated successfully, but these errors were encountered:
Fix InputCheckbox when initially checked. Fixes #8502
3866071
110e41f
Thanks @we4sz for reporting this. It will be fixed in the next release.
Sorry, something went wrong.
SteveSandersonMS
No branches or pull requests
Describe the bug
When creating a InputCheckbox where value is true the checkbox is still unchecked.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The checkbox should be checked
Additional context
The text was updated successfully, but these errors were encountered: