Skip to content

Commit 41ca2e3

Browse files
committed
Merge branch 'main' into feature/RI-5402-ai-assistant
2 parents 31fac86 + ef1c258 commit 41ca2e3

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.circleci/config.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1020,6 +1020,13 @@ jobs:
10201020
-r $DOCKER_REPO \
10211021
-v $appVersion
10221022
1023+
docker login -u $DOCKER_V1_USER -p $DOCKER_V1_PASS
1024+
1025+
./.circleci/build/release-docker.sh \
1026+
-d redisinsight \
1027+
-r $DOCKER_V1_REPO \
1028+
-v $appVersion
1029+
10231030
publish-prod-aws:
10241031
executor: linux-executor
10251032
steps:

redisinsight/ui/src/helpers/constructKeysToTree.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ export const constructKeysToTree = (props: Props): any[] => {
5959

6060
// Regular sorting
6161
if (sorting === 'ASC') {
62-
return a.localeCompare(b, 'en', { numeric: true })
62+
return a.localeCompare(b, 'en')
6363
}
6464
if (sorting === 'DESC') {
65-
return b.localeCompare(a, 'en', { numeric: true })
65+
return b.localeCompare(a, 'en')
6666
}
6767

6868
return 0

0 commit comments

Comments
 (0)