Fixing star count

This commit is contained in:
Jeffrey Morgan 2015-03-06 16:09:10 -05:00
parent 65c3d2a9d3
commit d28a317eed
1 changed files with 1 additions and 0 deletions

View File

@ -77,6 +77,7 @@ var NewContainer = React.createClass({
res.description = data.short_description; res.description = data.short_description;
res.is_official = data.namespace === 'library'; res.is_official = data.namespace === 'library';
res.name = data.repo; res.name = data.repo;
res.star_count = data.stars;
return res; return res;
}); });
}).then(results => { }).then(results => {