Skip to content

Commit dd7a88b

Browse files
Merge branch 'develop' into tcx-202011
2 parents bdae5e6 + 57bba81 commit dd7a88b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.circleci/config.yml

-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,6 @@ workflows:
260260
branches:
261261
only:
262262
- develop
263-
- tcx-202011
264263
# Production builds are exectuted
265264
# when PR is merged to the master
266265
# Don't change anything in this configuration

src/shared/components/MMatchLeaderboard/index.jsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ export default class MMLeaderboard extends Component {
7070
// Use Lodash to sort array
7171
data = _.orderBy(
7272
data,
73-
[d => String(d[sortParam.field]).toLowerCase()], [sortParam.order],
73+
[d => Number(d[sortParam.field]) || String(d[sortParam.field]).toLowerCase()],
74+
[sortParam.order],
7475
);
7576
}
7677

0 commit comments

Comments
 (0)