diff --git a/ui/src/components/ui/data-table.tsx b/ui/src/components/ui/data-table.tsx index b6f5998..ad9fe6f 100644 --- a/ui/src/components/ui/data-table.tsx +++ b/ui/src/components/ui/data-table.tsx @@ -115,27 +115,29 @@ export function DataTable({ Next - +
+ +
); diff --git a/ui/src/routes/tables.lazy.tsx b/ui/src/routes/tables.lazy.tsx index 6281c1c..d78a8fe 100644 --- a/ui/src/routes/tables.lazy.tsx +++ b/ui/src/routes/tables.lazy.tsx @@ -55,7 +55,7 @@ function Table({ name }: Props) { [key: string]: string; }; const columns: ColumnDef[] = data.columns.map((col) => ({ - accessorKey: col.toLowerCase(), + accessorKey: col, header: col, })); const rows = data.rows.map((row) =>