Skip to content

Commit

Permalink
fix: removed private repos
Browse files Browse the repository at this point in the history
Part of #13
  • Loading branch information
RichardLitt committed Sep 26, 2017
1 parent ffe1645 commit 72be3b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RepoMatrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ let RepoMatrix = (() => {
}) // Github
// th => 'Open PRs' # Github
return tbody(() => {
return Array.from(repos).map(({ fullName, files, stargazersCount, openIssuesCount }) =>
return Array.from(repos).filter(repo => !repo.private).map(({ fullName, files, stargazersCount, openIssuesCount }) =>
tr(() => {
let nameArray = split(fullName, '/')

Expand Down

0 comments on commit 72be3b8

Please sign in to comment.