Compare commits

..

1 Commits

Author SHA1 Message Date
08baaa6d83 updating default logbook table page size (#109) 2026-03-08 17:40:10 -05:00
4 changed files with 9 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "api", "name": "api",
"version": "2.0.0", "version": "2.0.1",
"description": "", "description": "",
"author": "", "author": "",
"private": true, "private": true,

View File

@@ -1,7 +1,7 @@
{ {
"name": "client", "name": "client",
"private": true, "private": true,
"version": "2.0.0", "version": "2.0.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@@ -343,9 +343,14 @@ const Logbook: React.FC<unknown> = () => {
columns: columns, columns: columns,
getCoreRowModel: getCoreRowModel(), getCoreRowModel: getCoreRowModel(),
getPaginationRowModel: getPaginationRowModel(), getPaginationRowModel: getPaginationRowModel(),
initialState: {
pagination: {
pageSize: 100
}
},
onColumnVisibilityChange: setColumnVisibility, onColumnVisibilityChange: setColumnVisibility,
state: { state: {
columnVisibility: columnVisibility columnVisibility: columnVisibility,
} }
}); });

View File

@@ -1,6 +1,6 @@
{ {
"name": "@noahspan/flying", "name": "@noahspan/flying",
"version": "2.0.0", "version": "2.0.1",
"scripts": { "scripts": {
"start": "node api/dist/main", "start": "node api/dist/main",
"format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"", "format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"",