Fix smart assignment suggestions to display juror/project names
The suggestions table was showing truncated IDs instead of actual names. Updated getSuggestions to include jurorName and projectTitle in response. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -337,10 +337,10 @@ function AssignmentManagementContent({ roundId }: { roundId: string }) {
|
||||
/>
|
||||
</TableCell>
|
||||
<TableCell className="font-medium">
|
||||
{suggestion.userId.slice(0, 8)}...
|
||||
{suggestion.jurorName}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
{suggestion.projectId.slice(0, 8)}...
|
||||
{suggestion.projectTitle}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<Badge
|
||||
|
||||
Reference in New Issue
Block a user