Skip to content

Commit 0b94a5a

Browse files
fix
1 parent 61659f9 commit 0b94a5a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

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)