Aníbal Svarcas

Results 60 comments of Aníbal Svarcas

Impressive! 🤯

This applies to the `SelectInput` as well. In your codesandbox, if you change the `AutocompleteInput` by a `SelectInput`, you get the same result.

Thanks for reporting this. Please provide a sample application showing the issue by forking the following CodeSandbox (https://codesandbox.io/s/github/marmelab/react-admin/tree/master/examples/simple)

Looking at it again, I don't think this is a bug. `ImageField` component displays images in a `div` internally, so you should either manipulate the component with styles: https://marmelab.com/react-admin/ImageField.html#sx-css-api For...

You can find the information in the docs: https://marmelab.com/react-admin/DataProviderWriting.html#response-format

This behavior is the responsibility of `react-hook-form`. You can solve it by passing `shouldUnregister` in your Form. ```jsx {({ formData, ...rest }) => formData.hasEmail && } ``` @fzaninotto, Plus, maybe...

Thanks for reporting this. Please provide a sample application showing the issue by forking the following CodeSandbox (https://codesandbox.io/s/github/marmelab/react-admin/tree/master/examples/simple).

Your use case is too complex to just give it a try, Could you provide a codeSandbox or a repo with a simple project to reproduce the bug you are...

I just check in the simple demo and it works fine by upgrading to "@mui/icons-material": "5.10.3". ![booleanfield](https://user-images.githubusercontent.com/8268610/187907679-0677aa6e-cf6e-4c57-876f-348f5ca523c0.png) Could you produce a codesandbox to reproduce the issue?