Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ export function ArtifactsAccordion({
</p>

{/* File Browser for Artifacts */}
<div className="border rounded-lg overflow-hidden">
<div className="overflow-hidden">
{/* Header with breadcrumbs and actions */}
<div className="px-2 py-1.5 border-b flex items-center justify-between bg-muted/30">
<div className="px-2 py-1.5 border-y flex items-center justify-between bg-muted/30">
<div className="flex items-center gap-1 text-xs text-muted-foreground min-w-0 flex-1">
{/* Back button when in subfolder or viewing file */}
{(currentSubPath || viewingFile) && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1581,8 +1581,8 @@ export default function ProjectSessionDetailPage({
</div>

{/* File Browser */}
<div className="border rounded-lg overflow-hidden">
<div className="px-2 py-1.5 border-b flex items-center justify-between bg-muted/30">
<div className="overflow-hidden">
<div className="px-2 py-1.5 border-y flex items-center justify-between bg-muted/30">
<div className="flex items-center gap-1 text-xs text-muted-foreground min-w-0 flex-1">
{(fileOps.currentSubPath ||
fileOps.viewingFile) && (
Expand Down
Loading