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.
2 parents 4bcfdb1 + 7cbec21 commit ef1c258Copy full SHA for ef1c258
redisinsight/ui/src/helpers/constructKeysToTree.ts
@@ -59,10 +59,10 @@ export const constructKeysToTree = (props: Props): any[] => {
59
60
// Regular sorting
61
if (sorting === 'ASC') {
62
- return a.localeCompare(b, 'en', { numeric: true })
+ return a.localeCompare(b, 'en')
63
}
64
if (sorting === 'DESC') {
65
- return b.localeCompare(a, 'en', { numeric: true })
+ return b.localeCompare(a, 'en')
66
67
68
return 0
0 commit comments