We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aede246 + 9e07498 commit a70cc29Copy full SHA for a70cc29
src/apps/review/src/lib/components/AiReviewsTable/AiReviewsTable.tsx
@@ -91,7 +91,11 @@ const AiReviewsTable: FC<AiReviewsTableProps> = props => {
91
<div className={styles.value}>
92
{run.status === 'SUCCESS' ? (
93
run.workflow.scorecard ? (
94
- <Link to={`/scorecard/${run.workflow.scorecard.id}`}>{run.score}</Link>
+ <Link
95
+ to={`../reviews/${props.submission.id}?workflowId=${run.workflow.id}`}
96
+ >
97
+ {run.score}
98
+ </Link>
99
) : run.score
100
) : '-'}
101
</div>
0 commit comments