-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed
Labels
Description
Prerequisites
- I have searched the existing issues
- I understand that providing a SSCCE example is tremendously useful to the maintainers.
- I have read the documentation
- Ideally, I'm providing a sample JSFiddle, Codesandbox.io or preferably a shared playground link demonstrating the issue.
What theme are you using?
bootstrap-4
Version
5.x
Current Behavior
I follow the steps from: https://github.com/rjsf-team/react-jsonschema-form/tree/main/packages/bootstrap-4
and get this:
I call the Form:
import Form from '@rjsf/bootstrap-4';
Expected Behavior
I expected to happen the same in Demo:
https://rjsf-team.github.io/react-jsonschema-form/

Steps To Reproduce
- sudo yarn add react-bootstrap @rjsf/core
- sudo yarn add @rjsf/bootstrap-4
- import Form from '@rjsf/bootstrap-4';
Environment
- OS: MACos Ventura Version 13.4 (22F66)
- Node: v18.14.1
- NPM: 9.3.1
- yarn: 1.22.19
"dependencies": {
"@rjsf/bootstrap-4": "^5.8.1",
"@rjsf/core": "^5.8.1",
"@rjsf/utils": "^5.8.1",
"@rjsf/validator-ajv8": "^5.7.2",
"axios": "^1.4.0",
"markdown-to-jsx": "^7.2.0",
"react": "^18.2.0",
"react-bootstrap": "^2.7.4",
"react-dom": "^18.2.0"
Anything else?
I have the same result with:
import Form from '@rjsf/bootstrap-4';
import Form from '@rjsf/core';
musesfish