-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Override field DescriptionField #2219
Comments
I can confirm that a custom |
I don't have a solution, but noticed that it does work when the type is |
Duplicate of #2363 |
For semantic-ui I've fixed this issue in the following PR: #2451 Bootstrap and material UI are doing the same thing where they aren't getting the description component from the registry. |
Fixed in the v5 beta, see the 5.x migration guide |
Prerequisites
Description
When I override DescriptionField in
core
then all works fine. When I override it inmaterial-ui
orbootstrap-4
then nothing happens.Steps to Reproduce
core
is enabled) and observe that all is fine.import Form from "@rjsf/core";
toimport Form from "@rjsf/material-ui";
orimport Form from "@rjsf/bootstrap-4";
Expected behavior
When I override DescriptionField in
material-ui
orbootstrap-4
and comment out lines 27-29 I expect not to see the description field being rendered.Actual behavior
The description field is still rendered when
material-ui
orbootstrap-4
is selected and lines 27-29 are commented out.What am I doing wrong?
The text was updated successfully, but these errors were encountered: