@@ -19,7 +19,7 @@ import { useVirtualizer } from "@tanstack/react-virtual";
1919import { formatDurationMilliseconds , MachinePresetName } from "@trigger.dev/core/v3" ;
2020import { ClipboardCheckIcon , ClipboardIcon } from "lucide-react" ;
2121import { forwardRef , memo , useEffect , useMemo , useRef , useState } from "react" ;
22- import { EnvironmentLabel } from "~/components/environments/EnvironmentLabel" ;
22+ import { EnvironmentLabel , EnvironmentSlug } from "~/components/environments/EnvironmentLabel" ;
2323import { MachineLabelCombo } from "~/components/MachineLabelCombo" ;
2424import { DateTimeAccurate } from "~/components/primitives/DateTime" ;
2525import {
@@ -666,7 +666,7 @@ function EnvironmentCellValue({ value }: { value: string }) {
666666 return < span > { value } </ span > ;
667667 }
668668
669- return < EnvironmentLabel environment = { environment } /> ;
669+ return < EnvironmentSlug environment = { environment } /> ;
670670}
671671
672672function JSONCellValue ( { value } : { value : unknown } ) {
@@ -782,7 +782,7 @@ function HeaderCellContent({
782782 return (
783783 < div
784784 className = { cn (
785- "flex w-full items-center gap-1 overflow-hidden bg-background-dimmed px-2 py-1.5" ,
785+ "flex w-full items-center gap-1 overflow-hidden bg-background-dimmed py-1.5 pl-2 pr-1 " ,
786786 "font-mono text-xs font-medium text-text-bright" ,
787787 alignment === "right" && "justify-end" ,
788788 canSort && "cursor-pointer select-none"
@@ -827,14 +827,10 @@ function HeaderCellContent({
827827 e . stopPropagation ( ) ;
828828 onFilterClick ( ) ;
829829 } }
830- className = { cn (
831- "flex-shrink-0 rounded p-0.5 transition-colors" ,
832- "hover:bg-charcoal-700" ,
833- "text-text-dimmed hover:text-text-bright"
834- ) }
830+ className = "flex-shrink-0 rounded text-text-dimmed transition-colors hover:bg-charcoal-700 hover:text-text-bright"
835831 title = "Toggle column filters"
836832 >
837- < FunnelIcon className = "size-3.5 " />
833+ < FunnelIcon className = "size-3" />
838834 </ button >
839835 ) }
840836 </ div >
0 commit comments