diff --git a/api/package.json b/api/package.json index 596fe1b..886000e 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "api", - "version": "2.0.0", + "version": "2.0.1", "description": "", "author": "", "private": true, diff --git a/client/package.json b/client/package.json index 147868c..9513366 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.0.0", + "version": "2.0.1", "type": "module", "scripts": { "dev": "vite", diff --git a/client/src/components/logbook/Logbook.tsx b/client/src/components/logbook/Logbook.tsx index 79a9c85..b21fabe 100644 --- a/client/src/components/logbook/Logbook.tsx +++ b/client/src/components/logbook/Logbook.tsx @@ -343,9 +343,14 @@ const Logbook: React.FC = () => { columns: columns, getCoreRowModel: getCoreRowModel(), getPaginationRowModel: getPaginationRowModel(), + initialState: { + pagination: { + pageSize: 100 + } + }, onColumnVisibilityChange: setColumnVisibility, state: { - columnVisibility: columnVisibility + columnVisibility: columnVisibility, } }); diff --git a/package.json b/package.json index de688dd..19874c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@noahspan/flying", - "version": "2.0.0", + "version": "2.0.1", "scripts": { "start": "node api/dist/main", "format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",