summaryrefslogtreecommitdiff
path: root/lib/tech-project-avl/table/accepted-quotations-table-columns.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tech-project-avl/table/accepted-quotations-table-columns.tsx')
-rw-r--r--lib/tech-project-avl/table/accepted-quotations-table-columns.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tech-project-avl/table/accepted-quotations-table-columns.tsx b/lib/tech-project-avl/table/accepted-quotations-table-columns.tsx
index 68a61f0a..dae19395 100644
--- a/lib/tech-project-avl/table/accepted-quotations-table-columns.tsx
+++ b/lib/tech-project-avl/table/accepted-quotations-table-columns.tsx
@@ -293,7 +293,7 @@ export function getColumns(): ColumnDef<AcceptedQuotationItem>[] {
),
cell: ({ row }) => (
<div>
- {row.original.dueDate ? formatDate(row.original.dueDate) : "-"}
+ {row.original.dueDate ? formatDate(row.original.dueDate, "KR") : "-"}
</div>
),
enableSorting: true,
@@ -309,7 +309,7 @@ export function getColumns(): ColumnDef<AcceptedQuotationItem>[] {
),
cell: ({ row }) => (
<div>
- {row.original.acceptedAt ? formatDate(row.original.acceptedAt) : "-"}
+ {row.original.acceptedAt ? formatDate(row.original.acceptedAt, "KR") : "-"}
</div>
),
enableSorting: true,