diff options
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")} > |
