From 4188412b8105e642b1c0ff43b9712858d6d06aea Mon Sep 17 00:00:00 2001 From: Jan Ackermann Date: Wed, 10 Apr 2024 11:48:39 +0200 Subject: [PATCH 01/16] Fix new notifications broken while notification center is open --- .../src/components/Topbar/Notifications.vue | 74 +++++++++++-------- 1 file changed, 42 insertions(+), 32 deletions(-) diff --git a/packages/web-runtime/src/components/Topbar/Notifications.vue b/packages/web-runtime/src/components/Topbar/Notifications.vue index ea8a09be1b8..870729cfb13 100644 --- a/packages/web-runtime/src/components/Topbar/Notifications.vue +++ b/packages/web-runtime/src/components/Topbar/Notifications.vue @@ -17,7 +17,7 @@ v-if="notifications.length" class="oc-notifications-mark-all" appearance="raw" - @click="deleteNotifications(notifications.map((n) => n.notification_id))" + @click="deleteNotificationsTask.perform(notifications.map((n) => n.notification_id))" > @@ -75,7 +75,7 @@