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
Adding custom key with dash results in error on react-json-from library side:
For the above example the key was test-test.
test-test
The text was updated successfully, but these errors were encountered:
Internally, the dash (-) is used to chain nested objects and array items.
-
So, when the UI generation code sees test-test, it interprets the first test to be a dict and the second test to be a key in that dict.
test
It can be fixed if we use some other character to chain nested items. But even that won't be a permanent fix.
I'll try to release a fix in a couple of weeks. Until then, hopefully you can use the underscore (_) character.
_
Sorry, something went wrong.
Fixed in v2.15.0. Please upgrade. Thank you for the bug report.
No branches or pull requests
Adding custom key with dash results in error on react-json-from library side:
For the above example the key was
test-test
.The text was updated successfully, but these errors were encountered: