Skip to content

Commit 19164fe

Browse files
fix(web): Fix branch filter in repos detail page (#851)
1 parent 140c351 commit 19164fe

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
- Fixed issue where the branch filter in the repos detail page would not return any results. [#851](https://github.com/sourcebot-dev/sourcebot/pull/851)
12+
1013
## [4.10.25] - 2026-02-04
1114

1215
### Fixed

packages/web/src/app/[domain]/repos/components/repoBranchesTable.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export const RepoBranchesTable = ({ indexRevisions, repoWebUrl, repoCodeHostType
3232
const columns = React.useMemo<ColumnDef<string>[]>(() => {
3333
return [
3434
{
35-
accessorKey: "refName",
35+
id: "refName",
36+
accessorFn: (row) => row,
3637
header: "Revision",
3738
cell: ({ row }) => {
3839
const refName = row.original;

0 commit comments

Comments
 (0)