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
<<: * not encoded
<<: *
default: &default name: '' age: 0 person: *default persons: - <<: *default age: 1 - <<: *default name: John - { age: 3, <<: *default }
actual
{ "default": { "name": "", "age": 0 }, "person": { "name": "", "age": 0 }, "persons": [ { "<<": { "name": "", "age": 0 }, "age": 1 }, { "<<": { "name": "", "age": 0 }, "name": "John" }, { "age": 3, "<<": { "name": "", "age": 0 } } ] }
expected
{ "default": { "name": "", "age": 0 }, "person": { "name": "", "age": 0 }, "persons": [ { "name": "", "age": 1 }, { "name": "John", "age": 0 }, { "age": 3, "name": "" } ] }
System: OS: Linux 6.8 Ubuntu 24.04.1 LTS 24.04.1 LTS (Noble Numbat) Browsers: Chrome: 129.0.6668.89
Public app (it-tools.tech)
The text was updated successfully, but these errors were encountered:
PR created #1359
Sorry, something went wrong.
CorentinTh
No branches or pull requests
Describe the bug
<<: *
not encodedWhat happened?
actual
expected
System information
System:
OS: Linux 6.8 Ubuntu 24.04.1 LTS 24.04.1 LTS (Noble Numbat)
Browsers:
Chrome: 129.0.6668.89
Where did you encounter the bug?
Public app (it-tools.tech)
The text was updated successfully, but these errors were encountered: