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 <noreply@paperclip.ing>
This commit is contained in:
dotta 2026-03-26 18:19:27 -05:00
parent 826da2973d
commit 1534b39ee3

View file

@ -1113,23 +1113,11 @@ export function Inbox() {
]} ]}
/> />
</Tabs> </Tabs>
{canMarkAllRead && (
<Button
type="button"
variant="outline"
size="sm"
className="h-8 shrink-0"
onClick={() => markAllReadMutation.mutate(unreadIssueIds)}
disabled={markAllReadMutation.isPending}
>
{markAllReadMutation.isPending ? "Marking…" : "Mark all as read"}
</Button>
)}
</div> </div>
{tab === "all" && (
<div className="flex flex-wrap items-center gap-2 sm:justify-end"> <div className="flex flex-wrap items-center gap-2 sm:justify-end">
{tab === "all" && (
<>
<Select <Select
value={allCategoryFilter} value={allCategoryFilter}
onValueChange={(value) => setAllCategoryFilter(value as InboxCategoryFilter)} onValueChange={(value) => setAllCategoryFilter(value as InboxCategoryFilter)}
@ -1162,8 +1150,22 @@ export function Inbox() {
</SelectContent> </SelectContent>
</Select> </Select>
)} )}
</div> </>
)} )}
{canMarkAllRead && (
<Button
type="button"
variant="outline"
size="sm"
className="h-8 shrink-0"
onClick={() => markAllReadMutation.mutate(unreadIssueIds)}
disabled={markAllReadMutation.isPending}
>
{markAllReadMutation.isPending ? "Marking…" : "Mark all as read"}
</Button>
)}
</div>
</div> </div>
{approvalsError && <p className="text-sm text-destructive">{approvalsError.message}</p>} {approvalsError && <p className="text-sm text-destructive">{approvalsError.message}</p>}