File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ function Header({
4343 < DropdownMenu modal = { false } onOpenChange = { setOpen } open = { open } >
4444 < DropdownMenuTrigger asChild >
4545 < div
46- className = "flex grow items-center px-2"
46+ className = "flex grow items-center px-2 overflow-hidden "
4747 onContextMenu = { ( ) => {
4848 setOpen ( true ) ;
4949 } }
@@ -52,7 +52,7 @@ function Header({
5252 < div className = "grow line-clamp-1 font-mono font-bold" >
5353 { header . displayName }
5454 </ div >
55- < LucideChevronDown className = "text-mute w-4 h-4 cursor-pointer" />
55+ < LucideChevronDown className = "text-mute w-4 h-4 cursor-pointer flex-shrink-0 " />
5656 </ div >
5757 </ DropdownMenuTrigger >
5858 < DropdownMenuContent
Original file line number Diff line number Diff line change @@ -182,7 +182,8 @@ function renderCellList({
182182 >
183183 { hasSticky && (
184184 < td
185- className = { cn ( "sticky left-0 z-1" , "bg-background" ) }
185+ style = { { zIndex : 100 } }
186+ className = { cn ( "sticky left-0" , "bg-background" ) }
186187 onMouseDown = { handleCellClicked (
187188 absoluteRowIndex ,
188189 headers [ 0 ] ?. index ?? - 1
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ function renderList<T>(props: ListViewRendererProps<T>): React.ReactElement {
219219 ) }
220220 />
221221 ) }
222- < div className = "text-xs" >
222+ < div className = "text-xs line-clamp-1 " >
223223 < Highlight text = { item . name } highlight = { highlight } />
224224 { item . badgeContent && (
225225 < span
You can’t perform that action at this time.
0 commit comments