summaryrefslogtreecommitdiff
path: root/lib/po/table
diff options
context:
space:
mode:
Diffstat (limited to 'lib/po/table')
-rw-r--r--lib/po/table/item-dialog.tsx2
-rw-r--r--lib/po/table/po-table-columns.tsx2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/po/table/item-dialog.tsx b/lib/po/table/item-dialog.tsx
index a6690e75..ce4e4741 100644
--- a/lib/po/table/item-dialog.tsx
+++ b/lib/po/table/item-dialog.tsx
@@ -147,7 +147,7 @@ export function ItemsDialog({ open, onOpenChange, po }: ItemsDialogProps) {
<div className="mt-3 pt-2 border-t text-xs text-muted-foreground flex items-center">
<Clock className="mr-1 h-3 w-3" />
- Updated: {formatDate(item.updatedAt)}
+ Updated: {formatDate(item.updatedAt, "KR")}
</div>
</CardContent>
</Card>
diff --git a/lib/po/table/po-table-columns.tsx b/lib/po/table/po-table-columns.tsx
index 6834e543..7edd2435 100644
--- a/lib/po/table/po-table-columns.tsx
+++ b/lib/po/table/po-table-columns.tsx
@@ -250,7 +250,7 @@ export function getColumns({ setRowAction }: GetColumnsProps): ColumnDef<Contrac
// 날짜 포맷, 숫자 포맷 등 처리
if (cfg.type === "date") {
const dateVal = cell.getValue() as Date
- return formatDate(dateVal)
+ return formatDate(dateVal, "KR")
}
// ...
return row.getValue(cfg.id) ?? ""