We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8bf5ebf commit aae679bCopy full SHA for aae679b
src/Project.elm
@@ -43,8 +43,8 @@ type alias ProcessedData =
43
{ imgPath : String
44
, year : Year
45
46
- -- only add github stars if the project has a github repo and it's above 5 stars (arbitrary)
47
- -- kinda embarassing to display star count if it's THAT low...
+ -- only add github stars if the project has a github repo w/ 5 stars or more
+ -- kinda awkward to display a project with 0 stars...
48
, stargazers : Maybe Int
49
}
50
@@ -184,7 +184,7 @@ getStargazers repoName env =
184
|> BackendTask.allowFatal
185
|> BackendTask.map
186
(\stargazers ->
187
- if stargazers > 5 then
+ if stargazers >= 5 then
188
Just stargazers
189
190
else
0 commit comments