diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-24 04:12:10 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-01-24 04:12:10 +0100 |
commit | d9022884c6c4e066b1e6ee8d9c07c220c031454e (patch) | |
tree | d3d7904c6dabcdee0f6afd8e5a64cff9d4d329ee /app/assets/javascripts/components/features/ui | |
parent | 1761d3f9c33f3e2e98a09906fae1a03783b54b10 (diff) |
Smarter infinite scroll
Diffstat (limited to 'app/assets/javascripts/components/features/ui')
-rw-r--r-- | app/assets/javascripts/components/features/ui/containers/status_list_container.jsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/javascripts/components/features/ui/containers/status_list_container.jsx b/app/assets/javascripts/components/features/ui/containers/status_list_container.jsx index ffb6f6e79..8af7b0c3c 100644 --- a/app/assets/javascripts/components/features/ui/containers/status_list_container.jsx +++ b/app/assets/javascripts/components/features/ui/containers/status_list_container.jsx @@ -33,7 +33,8 @@ const getStatusIds = createSelector([ })); const mapStateToProps = (state, props) => ({ - statusIds: getStatusIds(state, props) + statusIds: getStatusIds(state, props), + isLoading: state.getIn(['timelines', props.type, 'isLoading'], true) }); const mapDispatchToProps = (dispatch, { type, id }) => ({ |