Skip to content

Commit e9f476c

Browse files
committed
fix(webapp): refine auto-archive copy and toolbar spacing
1 parent 3c47076 commit e9f476c

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.branches/route.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ export default function Page() {
306306
/>
307307
)}
308308
</BranchFilters>
309-
<div className="flex shrink-0 items-center gap-2">
309+
<div className="flex shrink-0 items-center gap-1.5">
310310
<PaginationControls
311311
currentPage={currentPage}
312312
totalPages={totalPages}
@@ -599,7 +599,7 @@ export function BranchFilters({ children }: { children?: ReactNode }) {
599599
return (
600600
<div className="flex w-full flex-wrap items-center justify-between gap-2">
601601
<SearchInput placeholder="Search branch name…" resetParams={["page"]} />
602-
<div className="ml-auto flex flex-wrap items-center gap-2">
602+
<div className="ml-auto flex flex-wrap items-center gap-1.5">
603603
<Switch
604604
checked={showArchived ?? false}
605605
onCheckedChange={handleArchivedChange}

apps/webapp/app/routes/resources.branches.auto-archive.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,8 @@ function AutoArchiveForm({
375375
))}
376376
<div id="archive-exclusions-description">
377377
<Hint>
378-
Never auto-archive these branches. Use exact names; wildcards aren’t supported.
378+
Never auto-archive these branches. Enter one exact branch name per field; no
379+
wildcards.
379380
</Hint>
380381
</div>
381382
</div>
@@ -462,7 +463,7 @@ function AutoArchiveForm({
462463
variant="primary/medium"
463464
disabled={busy || !reviewed}
464465
>
465-
Save settings
466+
Save
466467
</Button>
467468
</DialogFooter>
468469
</fetcher.Form>

0 commit comments

Comments
 (0)