diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue index 432d89951..93ee63405 100644 --- a/src/components/notifications/notifications.vue +++ b/src/components/notifications/notifications.vue @@ -156,6 +156,8 @@ async function markAllRead() { const notificationService = new NotificationService() await notificationService.markAllRead() success({message: t('notification.markAllReadSuccess')}) + + notifications.value.forEach(n => n.readAt = new Date()) }