diff --git a/CHANGELOG.md b/CHANGELOG.md index 757fdea8a..c429919e7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Fixed +- 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) + ## [4.10.25] - 2026-02-04 ### Fixed diff --git a/packages/web/src/app/[domain]/repos/components/repoBranchesTable.tsx b/packages/web/src/app/[domain]/repos/components/repoBranchesTable.tsx index eea5e1028..dcd043a55 100644 --- a/packages/web/src/app/[domain]/repos/components/repoBranchesTable.tsx +++ b/packages/web/src/app/[domain]/repos/components/repoBranchesTable.tsx @@ -32,7 +32,8 @@ export const RepoBranchesTable = ({ indexRevisions, repoWebUrl, repoCodeHostType const columns = React.useMemo[]>(() => { return [ { - accessorKey: "refName", + id: "refName", + accessorFn: (row) => row, header: "Revision", cell: ({ row }) => { const refName = row.original;