Skip to content

Commit

Permalink
hotfeat: add cid to plan join request table
Browse files Browse the repository at this point in the history
  • Loading branch information
c0repwn3r committed Aug 21, 2024
1 parent f287233 commit 65d2b98
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@
const table = createTable(store);
const columns = table.createColumns([
table.column({
accessor: ({ user }) => user.id,
header: "Student CID",
}),
table.column({
accessor: ({ user }) => user.name,
header: "Student",
header: "Student Name",
}),
table.column({
accessor: ({ user }) => user.ratingShort,
Expand Down

0 comments on commit 65d2b98

Please sign in to comment.