You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently it's possible to sort kets per object in struct view (see "keys with arrow" button when keys are unsorted). It can be configurable. However it should not to be turned on by default since order of keys usually makes sense (e.g. "id" field goes first, or "start" and "finish" props should be together in that order and so on).
Example:
{
"B": 1,
"A": 2,
"C": 3
}
Should be:
{
"A": 2,
"B": 1,
"C": 3
}
Why:
in large jsons it is difficult to find fields
The text was updated successfully, but these errors were encountered: