From a5a4e240c6e7f3c937746647684adafc29032415 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Sun, 8 Mar 2026 17:37:50 -0500 Subject: [PATCH 1/2] updating default logbook table page size --- api/package.json | 2 +- client/package.json | 2 +- client/src/components/logbook/Logbook.tsx | 7 ++++++- package.json | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) 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\"", -- 2.49.1 From d2ca3f7c632121214dbcc9cbcc43cc8d86853830 Mon Sep 17 00:00:00 2001 From: Noah Spannbauer Date: Sun, 8 Mar 2026 17:56:24 -0500 Subject: [PATCH 2/2] updating default logbook table page size --- api/package.json | 2 +- client/package.json | 2 +- client/src/components/logbook/Logbook.tsx | 1 + package.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/api/package.json b/api/package.json index 886000e..0881606 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "api", - "version": "2.0.1", + "version": "2.0.2", "description": "", "author": "", "private": true, diff --git a/client/package.json b/client/package.json index 9513366..71a6a31 100644 --- a/client/package.json +++ b/client/package.json @@ -1,7 +1,7 @@ { "name": "client", "private": true, - "version": "2.0.1", + "version": "2.0.2", "type": "module", "scripts": { "dev": "vite", diff --git a/client/src/components/logbook/Logbook.tsx b/client/src/components/logbook/Logbook.tsx index b21fabe..b320dfe 100644 --- a/client/src/components/logbook/Logbook.tsx +++ b/client/src/components/logbook/Logbook.tsx @@ -345,6 +345,7 @@ const Logbook: React.FC = () => { getPaginationRowModel: getPaginationRowModel(), initialState: { pagination: { + pageIndex: 0, pageSize: 100 } }, diff --git a/package.json b/package.json index 19874c8..609a9e6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@noahspan/flying", - "version": "2.0.1", + "version": "2.0.2", "scripts": { "start": "node api/dist/main", "format": "prettier --write \"**/src/**/*.ts\" \"**/test/**/*.ts\"", -- 2.49.1