From ab327820ae248d81b60a26678fd9cf2b143d02c7 Mon Sep 17 00:00:00 2001 From: zetashift Date: Sat, 7 Mar 2026 17:15:50 +0100 Subject: [PATCH] swap the Notification.Read and Unread positions --- src/UnisonShare/Page/NotificationsPage.elm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/UnisonShare/Page/NotificationsPage.elm b/src/UnisonShare/Page/NotificationsPage.elm index a5e3884c..2eb5186e 100644 --- a/src/UnisonShare/Page/NotificationsPage.elm +++ b/src/UnisonShare/Page/NotificationsPage.elm @@ -712,8 +712,8 @@ view appContext model = All state -> ( TabList.tabList [] tabs.all [ tabs.unread, tabs.archive ] , viewSelectionControls state.selection - [ Button.button (UpdateSelection Notification.Unread) "Mark as unread" - , Button.button (UpdateSelection Notification.Read) "Mark as read" + [ Button.button (UpdateSelection Notification.Read) "Mark as read" + , Button.button (UpdateSelection Notification.Unread) "Mark as unread" , Button.button (UpdateSelection Notification.Archived) "Archive" ] , view_ appContext model state.selection state.notifications