mirror of
https://github.com/kikobar/mastodon.git
synced 2024-11-05 17:31:51 +00:00
Fix notification filter bar incorrectly filtering gaps (#14808)
This commit is contained in:
parent
5d3c8baa9a
commit
aab867b0e8
|
@ -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 => ({
|
||||
|
|
Loading…
Reference in a new issue