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.
1 parent 0fb8674 commit 7cbec21Copy full SHA for 7cbec21
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