|
|
@ -37,6 +37,7 @@ const makeMapStateToProps = () => {
|
|
|
|
|
|
|
|
|
|
|
|
const mapStateToProps = (state, { timelineId }) => ({
|
|
|
|
const mapStateToProps = (state, { timelineId }) => ({
|
|
|
|
statusIds: getStatusIds(state, { type: timelineId }),
|
|
|
|
statusIds: getStatusIds(state, { type: timelineId }),
|
|
|
|
|
|
|
|
lastId: state.getIn(['timelines', timelineId, 'items'])?.last(),
|
|
|
|
isLoading: state.getIn(['timelines', timelineId, 'isLoading'], true),
|
|
|
|
isLoading: state.getIn(['timelines', timelineId, 'isLoading'], true),
|
|
|
|
isPartial: state.getIn(['timelines', timelineId, 'isPartial'], false),
|
|
|
|
isPartial: state.getIn(['timelines', timelineId, 'isPartial'], false),
|
|
|
|
hasMore: state.getIn(['timelines', timelineId, 'hasMore']),
|
|
|
|
hasMore: state.getIn(['timelines', timelineId, 'hasMore']),
|
|
|
|