use start, end rather than min, max
This commit is contained in:
parent
f1a2b6d327
commit
dba48e2f8f
2 changed files with 5 additions and 5 deletions
|
@ -356,8 +356,8 @@ module.exports = React.createClass({
|
|||
return memberList;
|
||||
},
|
||||
|
||||
_getChildrenJoined: function(min, max) {
|
||||
return this._makeMemberTiles(this.state.filteredJoinedMembers.slice(min, max));
|
||||
_getChildrenJoined: function(start, end) {
|
||||
return this._makeMemberTiles(this.state.filteredJoinedMembers.slice(start, end));
|
||||
},
|
||||
|
||||
_getChildCountJoined: function() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue