251210:1709 Frontend: reeactor organization and run build
Some checks failed
Spec Validation / validate-markdown (push) Has been cancelled
Spec Validation / validate-diagrams (push) Has been cancelled
Spec Validation / check-todos (push) Has been cancelled

This commit is contained in:
admin
2025-12-10 17:09:11 +07:00
parent aa96cd90e3
commit c8a0f281ef
140 changed files with 3780 additions and 1473 deletions

View File

@@ -47,9 +47,9 @@ export function RFAList({ data }: RFAListProps) {
header: "Discipline",
},
{
accessorKey: "created_at",
header: "Date",
cell: ({ row }) => format(new Date(row.getValue("created_at")), "dd MMM yyyy"),
accessorKey: "createdAt",
header: "Created",
cell: ({ row }) => format(new Date(row.getValue("createdAt")), "dd MMM yyyy"),
},
{
accessorKey: "status",
@@ -62,7 +62,7 @@ export function RFAList({ data }: RFAListProps) {
const item = row.original;
return (
<div className="flex gap-2">
<Link href={`/rfas/${item.rfa_id}`}>
<Link href={`/rfas/${row.original.rfaId}`}>
<Button variant="ghost" size="icon" title="View">
<Eye className="h-4 w-4" />
</Button>