feat(ticket): support defect-class ticket workflows

This commit is contained in:
2026-06-26 00:50:52 +05:30
parent 8665762ba2
commit 1f8ca87bd0
21 changed files with 343 additions and 70 deletions

View File

@@ -12,11 +12,11 @@ export function useTicketColumns(): ColumnDef<TicketListItem>[] {
return useMemo(
() => [
{
accessorKey: 'id',
accessorKey: 'ticket_name',
header: 'Ticket',
size: 180,
cell: ({ row }) => (
<span className="font-medium">{row.original.id}</span>
<span className="font-medium">{row.original.ticket_name}</span>
),
},
{