We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
Add/Delete/Rename a container when we declare a nested attribute reference attribute won't work.
To reproduce the bug, add an Object attribute above reference attribute in the demo metadata and parser and can reproduce it.
Notes: It's a complexe task, because we have to rework on finding container/children, create nested object if its not exists.
Partial list of method to rework:
DefaultData.getChildren
Component.setReferenceAttribute
Component.removeAllReferenceAttributes
Component.getContainerId
⚠️ May be you have to change some call in DefaultDrawer to make it work.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Add/Delete/Rename a container when we declare a nested attribute reference attribute won't work.
To reproduce the bug, add an Object attribute above reference attribute in the demo metadata and parser and can reproduce it.
Notes:
It's a complexe task, because we have to rework on finding container/children, create nested object if its not exists.
Partial list of method to rework:
DefaultData.getChildren
: only check root attributes, need to find nested attributes.Component.setReferenceAttribute
: only check root attributes, need to find nested attributes and create parents if its not exists.Component.removeAllReferenceAttributes
only remove root attribute need to remove the wanted nested child attributes.Component.getContainerId
only look reference from root attributes, need to check children too.The text was updated successfully, but these errors were encountered: