From bf7bad76585cb3cfc0729f37bfa3b5f385619683 Mon Sep 17 00:00:00 2001 From: David Fischer Date: Mon, 13 Nov 2023 16:39:40 +0100 Subject: [PATCH] feat(history): adjust number of initially loaded boards --- src/views/BoardHistoryView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/BoardHistoryView.vue b/src/views/BoardHistoryView.vue index 39c5a10..ac55ca7 100644 --- a/src/views/BoardHistoryView.vue +++ b/src/views/BoardHistoryView.vue @@ -66,7 +66,7 @@ export default { if(pb.authStore.isValid){ this.boardsLoading = true - const records = await pb.collection('boards').getList(this.currentPage, 3, { + const records = await pb.collection('boards').getList(this.currentPage, 6, { sort: "-created" });