-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
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
Order in submission #84
Comments
What do you mean by order? Do you mean the Order of the Json props such as: {
"prop1": "val1",
"prop2": "val2"
} vs {
"prop2": "val2",
"prop1": "val1"
} |
exactly |
The order of Json properties is typically not guaranteed because of the Json spec states that props are not ordered / don't retain order. |
This is a disadvantage for us, we have to change the order of submission' display, but we never know when. |
Can you provide a more specific snippet of Json that you are seeing this out of order on? |
Here a example of response correct : { and in the invert order: |
In the submission, sometime the order is invert compare to the fields forms.
It happens when i reset fixtures, and after all the submissions are inverted. But it's not happen every time, only sometimes, but when it's happen we have to reset fixture until return to the good order.
The text was updated successfully, but these errors were encountered: