N-FIN-7: fix date format
This commit is contained in:
parent
09c8e6f567
commit
9d899b29e0
2 changed files with 6 additions and 8 deletions
|
@ -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');
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
@ -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');
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue