Skip to content

Commit 649fcf3

Browse files
committed
fix job apps table links
Signed-off-by: Kashish Mittal <[email protected]>
1 parent 9003a88 commit 649fcf3

File tree

1 file changed

+5
-2
lines changed
  • client/src/components/job-applications-view-component/job-application-table-component

1 file changed

+5
-2
lines changed

client/src/components/job-applications-view-component/job-application-table-component/index.jsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,12 +91,15 @@ function JobApplicationsTable({
9191
<ContentTableCell>{row.id}</ContentTableCell>
9292

9393
<ContentTableCell>
94-
<Link href={`/job-applications/${row.id}`}>
94+
<Link href={`/job-postings/${row.job_posting_id}`}>
9595
{row.job_posting.title}
9696
</Link>
9797
</ContentTableCell>
9898

99-
<ContentTableCell>{row.name}</ContentTableCell>
99+
<ContentTableCell>
100+
{" "}
101+
<Link href={`/job-applications/${row.id}`}>{row.name}</Link>
102+
</ContentTableCell>
100103

101104
<ContentTableCell>{row.email}</ContentTableCell>
102105

0 commit comments

Comments
 (0)