-
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?
core
Version
5.x
Current Behavior
In this playground example,When we change the value of dropdown A, B and C do not appear in formData. We suspect that it is a bug caused by overly deep nesting of objects.
{
"type": "object",
"properties": {
"abc": {
"type": "object",
"properties": {
"a": {
"type": "string",
"enum": [
"aaa",
"bbb"
],
"enumNames": [
"test1",
"test2"
],
"default": "aaa"
}
},
"dependencies": {
"a": {
"oneOf": [
{
"properties": {
"a": {
"enum": [
"bbb"
]
},
"b": {
"type": "object",
"properties": {
"c": {
"type": "string",
"enum": [
"withBefore"
],
"enumNames": [
"111"
],
"default": "withBefore"
}
}
}
}
},
{
"properties": {
"a": {
"enum": [
"aaa"
]
}
}
}
]
}
}
}
}
}
Expected Behavior
No response
Steps To Reproduce
No response
Environment
- OS:
- Node:
- npm:
Anything else?
No response