diff options
Diffstat (limited to 'lib/swp/table/swp-inbox-table-columns.tsx')
| -rw-r--r-- | lib/swp/table/swp-inbox-table-columns.tsx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/swp/table/swp-inbox-table-columns.tsx b/lib/swp/table/swp-inbox-table-columns.tsx index bd740ca4..dbf25c5d 100644 --- a/lib/swp/table/swp-inbox-table-columns.tsx +++ b/lib/swp/table/swp-inbox-table-columns.tsx @@ -106,6 +106,20 @@ export const swpInboxDocumentColumns: ColumnDef<SwpFileApiResponse>[] = [ size: 100, }, { + accessorKey: "NOTE1", + header: "DC Note", + cell: ({ row }) => { + const note1 = row.original.NOTE1; + if (!note1) return <span className="text-muted-foreground">-</span>; + return ( + <div className="max-w-md truncate" title={note1}> + {note1} + </div> + ); + }, + size: 200, + }, + { accessorKey: "CRTE_DTM", header: "μμ±μΌμ", cell: ({ row }) => { |
