N-FIN-7: fix date format

This commit is contained in:
Markus Thielker 2024-03-10 21:11:17 +01:00
parent 09c8e6f567
commit 9d899b29e0
No known key found for this signature in database
2 changed files with 6 additions and 8 deletions

View file

@ -3,6 +3,7 @@
import { ColumnDef } from '@tanstack/react-table';
import { Category } from '@prisma/client';
import { CellContext, ColumnDefTemplate } from '@tanstack/table-core';
import { format } from 'date-fns';
export const columns = (
actionCell: ColumnDefTemplate<CellContext<Category, unknown>>,
@ -29,16 +30,14 @@ export const columns = (
accessorKey: 'createdAt',
header: 'Created at',
cell: ({row}) => {
const date = row.getValue('createdAt') as Date;
return date.toDateString();
return format(row.original.createdAt, 'PPP');
},
},
{
accessorKey: 'updatedAt',
header: 'Updated at',
cell: ({row}) => {
const date = row.getValue('updatedAt') as Date;
return date.toDateString();
return format(row.original.updatedAt, 'PPP');
},
},
{

View file

@ -3,6 +3,7 @@
import { ColumnDef } from '@tanstack/react-table';
import { Entity } from '@prisma/client';
import { CellContext, ColumnDefTemplate } from '@tanstack/table-core';
import { format } from 'date-fns';
export const columns = (
actionCell: ColumnDefTemplate<CellContext<Entity, unknown>>,
@ -21,16 +22,14 @@ export const columns = (
accessorKey: 'createdAt',
header: 'Created at',
cell: ({row}) => {
const date = row.getValue('createdAt') as Date;
return date.toDateString();
return format(row.original.createdAt, 'PPP');
},
},
{
accessorKey: 'updatedAt',
header: 'Updated at',
cell: ({row}) => {
const date = row.getValue('updatedAt') as Date;
return date.toDateString();
return format(row.original.updatedAt, 'PPP');
},
},
{