Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/UnisonShare/Page/NotificationsPage.elm
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading