feat: add user information display in extractions table and update extraction retrieval method

This commit is contained in:
JSC
2025-08-17 01:44:38 +02:00
parent ed888dd8d1
commit 04401092bb
4 changed files with 41 additions and 4 deletions

View File

@@ -9,7 +9,8 @@ import {
CheckCircle,
Clock,
ExternalLink,
Loader2
Loader2,
User
} from 'lucide-react'
interface ExtractionsRowProps {
@@ -88,6 +89,14 @@ export function ExtractionsRow({ extraction }: ExtractionsRowProps) {
<TableCell className="text-center">
{getServiceBadge(extraction.service)}
</TableCell>
<TableCell>
<div className="flex items-center gap-2">
<User className="h-4 w-4 text-muted-foreground" />
<span className="font-medium">
{extraction.user_name || 'Unknown'}
</span>
</div>
</TableCell>
<TableCell>
<div className="space-y-1">
{getStatusBadge(extraction.status)}