summaryrefslogtreecommitdiff
path: root/lib/vendors/table/view-vendors_logs-dialog.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vendors/table/view-vendors_logs-dialog.tsx')
-rw-r--r--lib/vendors/table/view-vendors_logs-dialog.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/vendors/table/view-vendors_logs-dialog.tsx b/lib/vendors/table/view-vendors_logs-dialog.tsx
index 7402ae55..521c52e9 100644
--- a/lib/vendors/table/view-vendors_logs-dialog.tsx
+++ b/lib/vendors/table/view-vendors_logs-dialog.tsx
@@ -104,7 +104,7 @@ export function ViewVendorLogsDialog({
`"${log.comment?.replace(/"/g, '""') || ''}"`,
`"${log.userName || ''}"`,
`"${log.userEmail || ''}"`,
- `"${formatDateTime(log.createdAt)}"`
+ `"${formatDateTime(log.createdAt, "KR")}"`
].join(","))
].join("\n")
@@ -135,7 +135,7 @@ export function ViewVendorLogsDialog({
<Dialog open={open} onOpenChange={onOpenChange}>
<DialogContent className="sm:max-w-[700px]">
<DialogHeader>
- <DialogTitle>Audit Logs</DialogTitle>
+ <DialogTitle>협력업체 상태변경 히스토리</DialogTitle>
</DialogHeader>
{/* Filters and search */}
@@ -209,7 +209,7 @@ export function ViewVendorLogsDialog({
<div className="flex justify-between items-start mb-2">
<Badge className="text-xs">{log.action}</Badge>
<div className="text-xs text-muted-foreground">
- {formatDateTime(log.createdAt)}
+ {formatDateTime(log.createdAt, "KR")}
</div>
</div>