diff --git a/fe_calckey/frontend/client/src/components/MagNotifications.vue b/fe_calckey/frontend/client/src/components/MagNotifications.vue index 871d502..b9cc935 100644 --- a/fe_calckey/frontend/client/src/components/MagNotifications.vue +++ b/fe_calckey/frontend/client/src/components/MagNotifications.vue @@ -206,12 +206,12 @@ const emit = defineEmits<{ }>(); // Let's establish some rules for how notifications should be grouped: -// 1. Incoming notifications can form a group or be added to an existing group, up to a limit +// 1. [DONE] Incoming notifications can form a group or be added to an existing group, up to a limit // 2. [DONE] Initially loaded notifications can form a group // 3. [DONE] Notifications are not grouped across loading boundaries -// 4. Notification groups can only be appended to when scrolled to the top +// 4. [DONE] Notification groups can only be appended to when scrolled to the top // 5. [MAYBE] Items in the queue do not cross the original boundary when prepended -// 5. [MAYBE] Items that would be be pushed out by another item CAN break boundaries, but only with adjacent items +// 5. [MAYBE] Items that would be pushed out by another item CAN break boundaries, but only with adjacent items const groupIntra = ( notifications: packed.PackNotification[]