From 24f364e454375aa391ba5b27d22fd5d7462e4359 Mon Sep 17 00:00:00 2001 From: Kristina Date: Mon, 25 Mar 2024 11:32:59 +0400 Subject: [PATCH] Fix notifications order (#5053) Signed-off-by: Kristina Fefelova --- .../src/components/DocNotifyContextCard.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/notification-resources/src/components/DocNotifyContextCard.svelte b/plugins/notification-resources/src/components/DocNotifyContextCard.svelte index 82fe60400a..9e0be74a6e 100644 --- a/plugins/notification-resources/src/components/DocNotifyContextCard.svelte +++ b/plugins/notification-resources/src/components/DocNotifyContextCard.svelte @@ -140,7 +140,7 @@
- {#each notifications.slice(0, maxNotifications).reverse() as notification} + {#each notifications.slice(0, maxNotifications) as notification}