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
Using the current orderBy pipe, if you collection looks like:
orderBy
[{ name: 'a' }, { name: 'b' }, { name: 'A' }, { name: 'B' }]
then the sorted result by name will be:
name
[{ name: 'A' }, { name: 'B' }, { name: 'a' }, { name: 'b' }]
How to avoid this without adding an extra lowered case property?
The text was updated successfully, but these errors were encountered:
This seems like correct behaviour. What are you trying to avoid?
Sorry, something went wrong.
No branches or pull requests
Using the current
orderBy
pipe, if you collection looks like:then the sorted result by
name
will be:How to avoid this without adding an extra lowered case property?
The text was updated successfully, but these errors were encountered: