diff options
Diffstat (limited to 'components/ship-vendor-document/user-vendor-document-table-container.tsx')
| -rw-r--r-- | components/ship-vendor-document/user-vendor-document-table-container.tsx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/components/ship-vendor-document/user-vendor-document-table-container.tsx b/components/ship-vendor-document/user-vendor-document-table-container.tsx index 61d52c28..9e45df6b 100644 --- a/components/ship-vendor-document/user-vendor-document-table-container.tsx +++ b/components/ship-vendor-document/user-vendor-document-table-container.tsx @@ -81,6 +81,7 @@ interface RevisionInfo { reviewerId: number | null reviewerName: string | null reviewComments: string | null + serialNo: string | null createdAt: Date updatedAt: Date stageName?: string @@ -222,6 +223,7 @@ function RevisionTable({ <TableHeader> <TableRow> <TableHead className="w-12">Select</TableHead> + <TableHead>Serial No</TableHead> <TableHead>Revision</TableHead> <TableHead>Category</TableHead> <TableHead>Usage</TableHead> @@ -254,6 +256,9 @@ function RevisionTable({ /> </TableCell> <TableCell className="font-mono font-medium"> + {revision.serialNo || ''} + </TableCell> + <TableCell className="font-mono font-medium"> <div className="flex items-center gap-2"> {revision.revision} {/* ✅ 처리 상태 인디케이터 */} |
