Skip to content

Commit 32bb6ee

Browse files
committed
PM-3060 - on mobile, fix the ai scorecard link
1 parent aede246 commit 32bb6ee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/apps/review/src/lib/components/AiReviewsTable/AiReviewsTable.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,9 @@ const AiReviewsTable: FC<AiReviewsTableProps> = props => {
9191
<div className={styles.value}>
9292
{run.status === 'SUCCESS' ? (
9393
run.workflow.scorecard ? (
94-
<Link to={`/scorecard/${run.workflow.scorecard.id}`}>{run.score}</Link>
94+
<Link
95+
to={`../reviews/${props.submission.id}?workflowId=${run.workflow.id}`}
96+
>{run.score}</Link>
9597
) : run.score
9698
) : '-'}
9799
</div>

0 commit comments

Comments
 (0)