I can make the BooleanInput disabled, is there a way to make BooleanInput disabled?
I have solved this problem by use options attributes.
For anyone who stumbles upon this issue. Do <BooleanInput options={{ disabled: true }} /> instead of <BooleanInput disabled />
Has this been changed again? <BooleanInput disabled={true} /> works for me while <BooleanInput options={{ disabled: true }} /> doesn鈥檛 in react-admin 3.10.4.
Most helpful comment
For anyone who stumbles upon this issue. Do
<BooleanInput options={{ disabled: true }} />instead of<BooleanInput disabled />