Skip to content

Commit

Permalink
seo things
Browse files Browse the repository at this point in the history
  • Loading branch information
LakshayGMZ committed May 31, 2024
1 parent 35ed538 commit ae8dbdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/lib/data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const columnsOverall: ColumnDef<StudentDataJoined>[] = [
</Button>
);
},
cell: ({row}) => <div className="lowercase">{row.original.enrollment}</div>,
cell: ({row}) => <a href={"/student/" + row.original.enrollment} className="lowercase">{row.original.enrollment}</a>,
},
{
accessorKey: "name",
Expand Down Expand Up @@ -116,7 +116,7 @@ export const columnsSem: ColumnDef<StudentDataJoined>[] = [
</Button>
);
},
cell: ({row}) => <div className="lowercase">{row.original.enrollment}</div>,
cell: ({row}) => <a href={"/student/" + row.original.enrollment} className="lowercase">{row.original.enrollment}</a>,
},
{
accessorKey: "name",
Expand Down

0 comments on commit ae8dbdc

Please sign in to comment.