CodeBeam.MudBlazor.Extensions icon indicating copy to clipboard operation
CodeBeam.MudBlazor.Extensions copied to clipboard

MudChipField does not respect MudForm.Disabled

Open ChaseFlorell opened this issue 2 years ago • 0 comments
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

ChaseFlorell avatar Aug 28 '23 18:08 ChaseFlorell