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
From this change #238, the sort JSON fixed the randomization if the same key is present in different cases (lower vs upper), but introduced an ASCII sorting, meaning that changed the behaviour of sorting.
Can the comparison of the ascii be made to have only if the lowercase version of the 2 letters are the same?
E.g. lowercase(a) === lowercase(b) && a !== b -> compare it by ascii, if not do the same as it was
The text was updated successfully, but these errors were encountered:
From this change #238, the sort JSON fixed the randomization if the same key is present in different cases (lower vs upper), but introduced an ASCII sorting, meaning that changed the behaviour of sorting.
Example
Expected behaviour - and how it was before:
Current behaviour - ignores the actual ascending sort (a before b, and only sorts by ascii code)
Can the comparison of the ascii be made to have only if the lowercase version of the 2 letters are the same?
E.g.
lowercase(a) === lowercase(b) && a !== b
-> compare it by ascii, if not do the same as it wasThe text was updated successfully, but these errors were encountered: