This commit is contained in:
isUnknown 2025-06-02 10:09:54 +02:00
parent 8a9fb35034
commit ea5be654b5
2 changed files with 1 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -109,7 +109,7 @@ const sortedNotifications = computed(() => {
if (currentTab.value === 'unread') {
return sortedNotifications.filter(
(notification) => notification.isread !== 'true'
(notification) => !notification.isRead || notification.isread !== 'true'
);
}
return sortedNotifications;