File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
packages/web/src/app/[domain]/repos Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
14
14
### Fixed
15
15
- Text highlighting clarity. [ #342 ] ( https://github.com/sourcebot-dev/sourcebot/pull/342 )
16
+ - Fixed repo list column header styling. [ #344 ] ( https://github.com/sourcebot-dev/sourcebot/pull/344 )
16
17
- Clean up successful and failed jobs in Redis queues. [ #343 ] ( https://github.com/sourcebot-dev/sourcebot/pull/343 )
17
18
18
19
## [ 4.2.0] - 2025-06-09
Original file line number Diff line number Diff line change @@ -182,8 +182,11 @@ export const columns = (domain: string): ColumnDef<RepositoryColumnInfo>[] => [
182
182
< DropdownMenu >
183
183
< DropdownMenuTrigger asChild >
184
184
< 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
+ ) }
187
190
>
188
191
Status
189
192
< ListFilter className = { cn (
@@ -228,10 +231,10 @@ export const columns = (domain: string): ColumnDef<RepositoryColumnInfo>[] => [
228
231
< Button
229
232
variant = "ghost"
230
233
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 "
232
235
>
233
236
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" />
235
238
</ Button >
236
239
</ div >
237
240
) ,
You can’t perform that action at this time.
0 commit comments