CodeBeam.MudBlazor.Extensions
CodeBeam.MudBlazor.Extensions copied to clipboard
MudChipField does not respect MudForm.Disabled
trafficstars
Given the following psuedo code, the MudChipField doesn't respect the disabled state of the form.
<MudForm Disabled="true">
<MudTextField ... /> <!-- disabled -->
<MudChipField ... /> <!-- mutable -->
<MudForm>
Expected behavior: MudChipField should be disabled Actual behavior: MudChipField is still mutable