feat: add action to open ticket action in upload

This commit is contained in:
2026-07-02 15:44:26 +05:30
parent 278b9591d7
commit fdcfc3a8db
3 changed files with 16 additions and 2 deletions

View File

@@ -10,7 +10,9 @@ export function UploadResultCell({ item }: { item: UploadListItem }) {
<Badge className="bg-violet-500/15 text-violet-600 dark:text-violet-400">
<TicketCheck /> Ticket Created
</Badge>
<p className="text-xs font-medium">{item.ticket_id}</p>
<p className="text-xs font-medium">
{item.ticket_name ?? item.ticket_id}
</p>
</div>
);
}