Skip to content

Commit

Permalink
Fixed watchers parameter to subscribers_count (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahsankhatri authored and kamranahmedse committed Apr 6, 2019
1 parent 427e73d commit 1d15bcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/repository-grid/grid-item/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class GridItem extends React.Component {
rel="noopener noreferrer"
target="_blank">
<Watcher/>
{ this.props.repository.watchers.toLocaleString() }
{ this.props.repository.subscribers_count.toLocaleString() }
</a>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/repository-list/list-item/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ListItem extends React.Component {
rel="noopener noreferrer"
target="_blank">
<Watcher/>
{ this.props.repository.watchers.toLocaleString() }
{ this.props.repository.subscribers_count.toLocaleString() }
</a>
</div>
</div>
Expand Down

0 comments on commit 1d15bcf

Please sign in to comment.