fix: frontend build error in tickets page
This commit is contained in:
parent
b79566aad7
commit
53d5b9822a
1 changed files with 1 additions and 1 deletions
|
|
@ -122,7 +122,7 @@ export default function AdminTicketsPage() {
|
||||||
{ticket.id.substring(0, 8)}...
|
{ticket.id.substring(0, 8)}...
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell className="font-medium">{ticket.subject}</TableCell>
|
<TableCell className="font-medium">{ticket.subject}</TableCell>
|
||||||
<TableCell className="text-xs text-muted-foreground font-mono" title={ticket.userId}>
|
<TableCell className="text-xs text-muted-foreground font-mono" title={String(ticket.userId)}>
|
||||||
{ticket.userId}
|
{ticket.userId}
|
||||||
</TableCell>
|
</TableCell>
|
||||||
<TableCell>{getStatusBadge(ticket.status)}</TableCell>
|
<TableCell>{getStatusBadge(ticket.status)}</TableCell>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue