Skip to content

Commit 8be3b11

Browse files
committed
bugfix
1 parent 3a7d319 commit 8be3b11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/libs/contributors-loader-by-org.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class ContributorsLoaderByOrg {
5757

5858
_processContributors(constributors) {
5959
return _(constributors)
60-
.uniqWith(_.isEqual)
60+
.uniqBy('login')
6161
.map(user => _.pick(user, ['login', 'avatar_url', 'url', 'html_url']))
6262
.orderBy('login')
6363
.value();

0 commit comments

Comments
 (0)