From 2e563ccd50213b89c91e025b67bcad8150f2b953 Mon Sep 17 00:00:00 2001 From: dotta Date: Thu, 26 Mar 2026 12:31:20 -0500 Subject: [PATCH] Move unread/archive column to the left for non-issue inbox items Repositions the unread dot and archive X button to the leading (left) side of approval, failed run, and join request rows, matching the visual alignment of IssueRow where the unread slot appears first due to CSS flex ordering. Co-Authored-By: Paperclip --- ui/src/pages/Inbox.tsx | 180 ++++++++++++++++++++--------------------- 1 file changed, 90 insertions(+), 90 deletions(-) diff --git a/ui/src/pages/Inbox.tsx b/ui/src/pages/Inbox.tsx index 521bdf58..149bd292 100644 --- a/ui/src/pages/Inbox.tsx +++ b/ui/src/pages/Inbox.tsx @@ -137,11 +137,40 @@ function FailedRunInboxRow({ className, )}>
+ {showUnreadSlot ? ( + + {showUnreadDot ? ( + + ) : onArchive ? ( + + ) : ( + + ) : null} -
- {showUnreadSlot && ( - - {showUnreadDot ? ( - - ) : onArchive ? ( - - ) : ( - - )}
+ ) : onArchive ? ( + + ) : ( + + ) : null} -
) : null} - {showUnreadSlot && ( - - {showUnreadDot ? ( - - ) : onArchive ? ( - - ) : ( - - )} {showResolutionButtons ? (
@@ -414,8 +414,37 @@ function JoinRequestInboxRow({ className, )}>
+ {showUnreadSlot ? ( + + {showUnreadDot ? ( + + ) : onArchive ? ( + + ) : ( + + ) : null}
-
- {showUnreadSlot && ( - - {showUnreadDot ? ( - - ) : onArchive ? ( - - ) : ( - - )}