File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
redisinsight/ui/src/helpers Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -1020,6 +1020,13 @@ jobs:
1020
1020
-r $DOCKER_REPO \
1021
1021
-v $appVersion
1022
1022
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
+
1023
1030
publish-prod-aws :
1024
1031
executor : linux-executor
1025
1032
steps :
Original file line number Diff line number Diff line change @@ -59,10 +59,10 @@ export const constructKeysToTree = (props: Props): any[] => {
59
59
60
60
// Regular sorting
61
61
if ( sorting === 'ASC' ) {
62
- return a . localeCompare ( b , 'en' , { numeric : true } )
62
+ return a . localeCompare ( b , 'en' )
63
63
}
64
64
if ( sorting === 'DESC' ) {
65
- return b . localeCompare ( a , 'en' , { numeric : true } )
65
+ return b . localeCompare ( a , 'en' )
66
66
}
67
67
68
68
return 0
You can’t perform that action at this time.
0 commit comments