fixed wrong count value onGetItems in Listing
This commit is contained in:
committed by
MrCasual
parent
cb50517cbc
commit
f2a0d4ce96
@ -421,7 +421,9 @@ define(
|
||||
loading: false
|
||||
}, function() {
|
||||
if(this.props['onGetItems'] !== undefined) {
|
||||
this.props.onGetItems(this.state.count);
|
||||
this.props.onGetItems(
|
||||
~~(this.state.groups[0]['count'])
|
||||
);
|
||||
}
|
||||
}.bind(this));
|
||||
}.bind(this));
|
||||
|
Reference in New Issue
Block a user