CodeBeamOrg / CodeBeam.MudBlazor.Extensions

Useful third party extension components for MudBlazor, from the contributors.
https://mudextensions.codebeam.org/
MIT License
367 stars 62 forks source link

MudChipField does not respect MudForm.Disabled #270

Open ChaseFlorell opened 10 months ago

ChaseFlorell commented 10 months ago

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