From 1534b39ee3ec4d3ab3ea5326c815e4115a55ec9b Mon Sep 17 00:00:00 2001 From: dotta Date: Thu, 26 Mar 2026 18:19:27 -0500 Subject: [PATCH] Move 'Mark all as read' button to top-right of inbox header Moved the button out of the tabs wrapper and into the right-side flex container so it aligns to the right instead of wrapping below the tabs. The button now sits alongside the filter dropdowns (on the All tab) or alone on the right (on other tabs). Co-Authored-By: Paperclip --- ui/src/pages/Inbox.tsx | 76 ++++++++++++++++++++++-------------------- 1 file changed, 39 insertions(+), 37 deletions(-) diff --git a/ui/src/pages/Inbox.tsx b/ui/src/pages/Inbox.tsx index 4840e10d..457909f1 100644 --- a/ui/src/pages/Inbox.tsx +++ b/ui/src/pages/Inbox.tsx @@ -1113,6 +1113,45 @@ export function Inbox() { ]} /> + + +
+ {tab === "all" && ( + <> + + + {showApprovalsCategory && ( + + )} + + )} {canMarkAllRead && (
- - {tab === "all" && ( -
- - - {showApprovalsCategory && ( - - )} -
- )} {approvalsError &&

{approvalsError.message}

}