diff options
| author | joonhoekim <26rote@gmail.com> | 2025-11-18 15:03:15 +0900 |
|---|---|---|
| committer | joonhoekim <26rote@gmail.com> | 2025-11-18 15:03:15 +0900 |
| commit | 54c654260c098864a8e113d46a242a057b58aae6 (patch) | |
| tree | a871f0a41bb40ee9a992a51566d42e8404185baa /lib/swp/table/swp-inbox-table-columns.tsx | |
| parent | 1a8bf9c1c98454bd0e961b84d14299155ad67e7f (diff) | |
(김준회) swp 수정: Activity Level에 따라 REV/Stage 표시하도록 변경, 필드 NOTE->NOTE1, NOTE2 구조 변경 등
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 }) => { |
