Skip to content
Closed
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
2 changes: 1 addition & 1 deletion packages/views/ship/components/ship-project-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ export function ShipProjectSection({ project }: ShipProjectSectionProps) {
<div id={sectionId} className="space-y-3">
<ShipDeploySwimlanes projectId={project.id} />

<div className="space-y-3">
<div className="flex gap-3 overflow-x-auto pb-2">
{repoGroups.map(([repoUrl, repoPrs]) => (
<ShipRepoSection
key={repoUrl}
Expand Down
4 changes: 2 additions & 2 deletions packages/views/ship/components/ship-repo-section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function ShipRepoSection({
}, [prs]);

return (
<section className="space-y-2 rounded-md border bg-muted/10 p-3">
<section className="flex w-[280px] shrink-0 flex-col rounded-md border bg-muted/10 p-3">
<div className="flex flex-wrap items-center gap-2">
<button
type="button"
Expand Down Expand Up @@ -84,7 +84,7 @@ export function ShipRepoSection({
{!collapsed && (
<div
id={sectionId}
className="max-h-[400px] space-y-2 overflow-y-auto pr-1"
className="flex-1 min-h-[120px] max-h-[480px] space-y-2 overflow-y-auto pr-1"
>
{prs.length === 0 && !isLoading ? (
<p className="py-3 text-center text-xs text-muted-foreground">
Expand Down
Loading