Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions apps/main-site/src/app/(main-site)/[owner]/[name]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ async function RepoDetailShell({
<SyncProgressOverlay owner={owner} name={name}>
<div className="h-full overflow-y-auto">
<div className="px-6 py-8">
{header}
{prs}
{issues}
<div key="header">{header}</div>
<div key="prs">{prs}</div>
<div key="issues">{issues}</div>
</div>
</div>
</SyncProgressOverlay>
Expand Down
6 changes: 3 additions & 3 deletions apps/main-site/src/app/(main-site)/[owner]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ async function OrgDetailShell({
<div className="mb-4">{commandPalette}</div>
<SignInCta />
<div className="grid gap-4 lg:grid-cols-3">
{prColumn}
{issuesColumn}
{reposColumn}
<div key="pr">{prColumn}</div>
<div key="issues">{issuesColumn}</div>
<div key="repos">{reposColumn}</div>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -602,11 +602,11 @@ function PrRow({ pr }: { pr: DashboardPrItem }) {
return (
<Link
href={`/${pr.ownerLogin}/${pr.repoName}/pull/${pr.number}`}
className="flex items-center gap-2.5 border-b border-border/30 px-3 py-2 no-underline transition-colors hover:bg-accent/50 last:border-b-0"
className="flex items-start gap-2.5 border-b border-border/30 px-3 py-2 no-underline transition-colors hover:bg-accent/50 last:border-b-0"
>
<PrStateIcon state={pr.state} draft={pr.draft} />
<div className="min-w-0 flex-1">
<p className="truncate text-[13px] font-medium text-foreground leading-tight">
<p className="text-[13px] font-medium text-foreground leading-tight">
{pr.title}
</p>
<div className="mt-0.5 flex items-center gap-1.5 font-mono text-[10px] text-muted-foreground/60">
Expand Down Expand Up @@ -653,7 +653,7 @@ function IssueRow({ issue }: { issue: DashboardIssueItem }) {
return (
<Link
href={`/${issue.ownerLogin}/${issue.repoName}/issues/${issue.number}`}
className="flex items-center gap-2.5 border-b border-border/30 px-3 py-2 no-underline transition-colors hover:bg-accent/50 last:border-b-0"
className="flex items-start gap-2.5 border-b border-border/30 px-3 py-2 no-underline transition-colors hover:bg-accent/50 last:border-b-0"
>
<CircleDot
className={cn(
Expand All @@ -662,7 +662,7 @@ function IssueRow({ issue }: { issue: DashboardIssueItem }) {
)}
/>
<div className="min-w-0 flex-1">
<p className="truncate text-[13px] font-medium text-foreground leading-tight">
<p className="text-[13px] font-medium leading-tight text-foreground">
{issue.title}
</p>
<div className="mt-0.5 flex items-center gap-1.5 font-mono text-[10px] text-muted-foreground/60">
Expand Down Expand Up @@ -701,10 +701,10 @@ function RepoRow({ repo }: { repo: RepoSummary }) {
return (
<Link
href={`/${repo.ownerLogin}/${repo.name}`}
className="flex items-center justify-between gap-2 border-b border-border/30 px-3 py-2 no-underline transition-colors hover:bg-accent/50 last:border-b-0"
className="flex items-start justify-between gap-2 border-b border-border/30 px-3 py-2 no-underline transition-colors hover:bg-accent/50 last:border-b-0"
>
<div className="min-w-0 flex-1">
<p className="truncate text-[13px] font-medium text-foreground leading-tight">
<p className="text-[13px] font-medium text-foreground leading-tight">
{repo.fullName}
</p>
{repo.lastPushAt !== null && (
Expand Down
8 changes: 4 additions & 4 deletions apps/main-site/src/app/(main-site)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async function DashboardShell({

return (
<div className="h-full overflow-y-auto bg-dotgrid">
<div className="mx-auto max-w-[1600px] px-4 py-4 md:px-6 md:py-5">
<div className="mx-auto max-w-400 px-4 py-4 md:px-6 md:py-5">
{/* Command palette */}
<div className="mb-4">{commandPalette}</div>

Expand All @@ -50,9 +50,9 @@ async function DashboardShell({

{/* Three-column grid */}
<div className="grid gap-4 lg:grid-cols-3">
{prColumn}
{issuesColumn}
{reposColumn}
<div key="pr">{prColumn}</div>
<div key="issues">{issuesColumn}</div>
<div key="repos">{reposColumn}</div>
</div>
</div>
</div>
Expand Down