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
2 changes: 1 addition & 1 deletion web/oss/src/components/DrillInView/DrillInBreadcrumb.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ const DrillInBreadcrumb = memo(
)

return (
<div className="flex items-center gap-1 min-h-[32px] sticky top-0 bg-white z-10 py-2">
<div className="drill-in-breadcrumb flex items-center gap-1 min-h-[32px] sticky top-0 bg-white z-10 py-2">
{/* Fixed prefix (span navigation) - doesn't scroll */}
{prefix && <div className="flex-shrink-0 flex items-center">{prefix}</div>}

Expand Down
2 changes: 1 addition & 1 deletion web/oss/src/components/DrillInView/DrillInContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -704,7 +704,7 @@ export function DrillInContent({

{/* Field content - collapsible */}
{!isCollapsed && (
<div>
<div className="drill-in-field-content">
{renderFieldContent({
item,
stringValue,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const TestcaseEditDrawerContent = forwardRef<
const entityWithDrillIn = testcase as any

return (
<div className="flex flex-col h-full overflow-hidden w-full [&_.agenta-shared-editor]:w-[calc(100%-24px)]">
<div className="flex flex-col h-full overflow-hidden w-full [&_.drill-in-breadcrumb]:pl-4 [&_.drill-in-field-content]:px-4 [&_.drill-in-field-content]:pt-2">
<div className="flex-1 overflow-y-auto overflow-x-hidden">
<EntityDualViewEditor
entityId={testcaseId}
Expand Down