diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-09 12:19:05 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-09 12:19:05 +0000 |
| commit | 6d654b1ba2c19e0bf1745b636908e3b00a0f02c7 (patch) | |
| tree | f6d48c0d3a65b428a828acea5db65db8e7bf0db8 /lib/b-rfq/attachment/attachment-columns.tsx | |
| parent | 44794a8628997c0d979adb5bd6711cd848b3e397 (diff) | |
(대표님) 20250709 변경사항 (약 18시 30분까지)
Diffstat (limited to 'lib/b-rfq/attachment/attachment-columns.tsx')
| -rw-r--r-- | lib/b-rfq/attachment/attachment-columns.tsx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/b-rfq/attachment/attachment-columns.tsx b/lib/b-rfq/attachment/attachment-columns.tsx index c611e06c..b726ebc8 100644 --- a/lib/b-rfq/attachment/attachment-columns.tsx +++ b/lib/b-rfq/attachment/attachment-columns.tsx @@ -156,13 +156,13 @@ export function getAttachmentColumns({ const updated = row.original.updatedAt as Date return ( <div> - <div>{formatDate(created)}</div> + <div>{formatDate(created, "KR")}</div> <div className="text-xs text-muted-foreground"> {row.original.createdByName} </div> {updated && new Date(updated) > new Date(created) && ( <div className="text-xs text-blue-600"> - 수정: {formatDate(updated)} + 수정: {formatDate(updated, "KR")} </div> )} </div> @@ -252,10 +252,6 @@ export function getAttachmentColumns({ <MessageSquare className="mr-2 h-4 w-4" /> 벤더 응답 보기 </DropdownMenuItem> - <DropdownMenuItem> - <Eye className="mr-2 h-4 w-4" /> - 미리보기 - </DropdownMenuItem> <DropdownMenuItem onClick={() => row.original.filePath && window.open(row.original.filePath, "_blank")} > |
