Disabled for Input not working

Hello, using Ionic V7,

I have this component in which I pass:

 <ion-textarea
                [id]="field.fieldName"
                label="{{ field.label | translate }}"
                ....
                spellcheck="true"
                [disabled]="field.disabled || false"
              >
</ion-textarea>

Same with input, ion-select, etc.

But it is not working, it is not disabling the inputs, even when I just pass it like [disabled]=“true” directly. Do you guys happen to know this issue?