...
|
...
|
@@ -44,9 +44,11 @@ export default class List extends Component { |
|
|
|
|
|
renderRow(rowData,sectionID,rowID) {
|
|
|
let type = this.props.data.get('type');
|
|
|
let categoryMap = this.props.data.get('categoryMap').toJS();
|
|
|
return(
|
|
|
<ListCell
|
|
|
resource={rowData}
|
|
|
categoryMap={categoryMap}
|
|
|
type={type}
|
|
|
rowID={rowID}
|
|
|
onPressCell={this.props.onPressCell}
|
...
|
...
|
@@ -63,9 +65,9 @@ export default class List extends Component { |
|
|
let isFetching = articles.get('isFetching');
|
|
|
|
|
|
if (!list || !list.size) {
|
|
|
return <LoadingIndicator
|
|
|
return (<LoadingIndicator
|
|
|
isVisible={isFetching}
|
|
|
/>;
|
|
|
/>);
|
|
|
}
|
|
|
|
|
|
return (
|
...
|
...
|
|