10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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?