Skip to content

Commit

Permalink
fix: only show unread when showAll is disabled and no extra filter is…
Browse files Browse the repository at this point in the history
… set

Signed-off-by: Wolfgang <[email protected]>
  • Loading branch information
wofferl authored and Grotax committed Oct 14, 2024
1 parent 046e712 commit 4df9951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/feed-display/FeedItemDisplayList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export default Vue.extend({
this.$emit('load-more')
},
noFilter(item: FeedItem): boolean {
return this.$store.getters.showAll ? true : item.unread || item.starred
return this.$store.getters.showAll ? true : item.unread
},
starFilter(item: FeedItem): boolean {
return item.starred
Expand Down

0 comments on commit 4df9951

Please sign in to comment.