fixed wrong count value onGetItems in Listing

This commit is contained in:
Jonathan Labreuille
2015-11-12 14:53:32 +01:00
committed by MrCasual
parent cb50517cbc
commit f2a0d4ce96

View File

@ -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));