Fix notification filter bar incorrectly filtering gaps (#14808)

lolsob-rspec
ThibG 2020-09-16 20:17:16 +02:00 committed by GitHub
parent f13d563cb7
commit cfb35b767c
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ const getNotifications = createSelector([
// we need to turn it off for FilterBar in order not to block ourselves from seeing a specific category
return notifications.filterNot(item => item !== null && excludedTypes.includes(item.get('type')));
}
return notifications.filter(item => item !== null && allowedType === item.get('type'));
return notifications.filter(item => item === null || allowedType === item.get('type'));
});
const mapStateToProps = state => ({