File tree Expand file tree Collapse file tree
packages/web/src/app/[domain]/repos Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -182,8 +182,11 @@ export const columns = (domain: string): ColumnDef<RepositoryColumnInfo>[] => [
182182 < DropdownMenu >
183183 < DropdownMenuTrigger asChild >
184184 < Button
185- variant = { currentFilter ? "secondary" : "ghost" }
186- className = "px-0 font-medium"
185+ variant = "ghost"
186+ className = { cn (
187+ "px-0 font-medium hover:bg-transparent focus:bg-transparent active:bg-transparent focus-visible:ring-0 focus-visible:ring-offset-0" ,
188+ currentFilter ? "text-primary hover:text-primary" : "text-muted-foreground hover:text-muted-foreground"
189+ ) }
187190 >
188191 Status
189192 < ListFilter className = { cn (
@@ -228,10 +231,10 @@ export const columns = (domain: string): ColumnDef<RepositoryColumnInfo>[] => [
228231 < Button
229232 variant = "ghost"
230233 onClick = { ( ) => column . toggleSorting ( column . getIsSorted ( ) === "asc" ) }
231- className = "px-0 font-medium"
234+ className = "px-0 font-medium hover:bg-transparent focus:bg-transparent active:bg-transparent focus-visible:ring-0 focus-visible:ring-offset-0 "
232235 >
233236 Last Indexed
234- < ArrowUpDown className = "ml-2 h-3.5 w-3.5 text-muted-foreground " />
237+ < ArrowUpDown className = "ml-2 h-3.5 w-3.5" />
235238 </ Button >
236239 </ div >
237240 ) ,
You can’t perform that action at this time.
0 commit comments