summaryrefslogtreecommitdiff
path: root/lib/tags
diff options
context:
space:
mode:
Diffstat (limited to 'lib/tags')
-rw-r--r--lib/tags/table/tag-table-column.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tags/table/tag-table-column.tsx b/lib/tags/table/tag-table-column.tsx
index 47746000..80c25464 100644
--- a/lib/tags/table/tag-table-column.tsx
+++ b/lib/tags/table/tag-table-column.tsx
@@ -100,7 +100,7 @@ export function getColumns({
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Created At" />
),
- cell: ({ cell }) => formatDate(cell.getValue() as Date),
+ cell: ({ cell }) => formatDate(cell.getValue() as Date, "KR"),
meta: {
excelHeader: "created At"
},
@@ -113,7 +113,7 @@ export function getColumns({
header: ({ column }) => (
<DataTableColumnHeaderSimple column={column} title="Updated At" />
),
- cell: ({ cell }) => formatDate(cell.getValue() as Date),
+ cell: ({ cell }) => formatDate(cell.getValue() as Date, "KR"),
meta: {
excelHeader: "updated At"
},