Fix JavaScript console warning when loading notifications (#19772)
This commit is contained in:
		
							parent
							
								
									c95d9aab56
								
							
						
					
					
						commit
						887976814a
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -58,7 +58,7 @@ const getNotifications = createSelector([ | ||||||
| const mapStateToProps = state => ({ | const mapStateToProps = state => ({ | ||||||
|   showFilterBar: state.getIn(['settings', 'notifications', 'quickFilter', 'show']), |   showFilterBar: state.getIn(['settings', 'notifications', 'quickFilter', 'show']), | ||||||
|   notifications: getNotifications(state), |   notifications: getNotifications(state), | ||||||
|   isLoading: state.getIn(['notifications', 'isLoading'], true), |   isLoading: state.getIn(['notifications', 'isLoading'], 0) > 0, | ||||||
|   isUnread: state.getIn(['notifications', 'unread']) > 0 || state.getIn(['notifications', 'pendingItems']).size > 0, |   isUnread: state.getIn(['notifications', 'unread']) > 0 || state.getIn(['notifications', 'pendingItems']).size > 0, | ||||||
|   hasMore: state.getIn(['notifications', 'hasMore']), |   hasMore: state.getIn(['notifications', 'hasMore']), | ||||||
|   numPending: state.getIn(['notifications', 'pendingItems'], ImmutableList()).size, |   numPending: state.getIn(['notifications', 'pendingItems'], ImmutableList()).size, | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue