diff --git a/frontend/src/components/dependency-graph/minimap-content.tsx b/frontend/src/components/dependency-graph/minimap-content.tsx index 44fc56e3fca..8866188b7d4 100644 --- a/frontend/src/components/dependency-graph/minimap-content.tsx +++ b/frontend/src/components/dependency-graph/minimap-content.tsx @@ -21,6 +21,7 @@ import { extractCellPreview } from "./utils/cell-preview"; interface MinimapCellProps { cellId: CellId; + index: number; cellPositions: Readonly>; } @@ -67,7 +68,7 @@ const MinimapCell: React.FC = (props) => { className={cn( "group bg-transparent text-left w-full flex relative justify-between items-center", "border-none rounded cursor-pointer", - "h-[21px] pl-[51px] font-inherit", + "h-[21px] pl-[59px] font-inherit", isSelected ? "text-primary-foreground" : "text-(--gray-8) hover:text-(--gray-9)", @@ -78,6 +79,12 @@ const MinimapCell: React.FC = (props) => { // transitions from current cell -> null -> new cell. onMouseDown={(e) => e.preventDefault()} > +
= (props) => {
{ aria-hidden="true" /> )} - + ); })}