From f1fce301129941c53c418a831cba3176bdfdc215 Mon Sep 17 00:00:00 2001 From: William Allen Date: Thu, 13 Aug 2026 14:25:01 -0400 Subject: [PATCH] Reduce build notes pagination count from 100 to 10 Notes are often quite large, meaning that a page of 100 notes can be 1MB+. This PR reduces the pagination count from 100 to 10 to put initial content on the page faster. --- resources/js/vue/components/BuildNotesPage.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/vue/components/BuildNotesPage.vue b/resources/js/vue/components/BuildNotesPage.vue index 03e39a6979..bb1a099cf0 100644 --- a/resources/js/vue/components/BuildNotesPage.vue +++ b/resources/js/vue/components/BuildNotesPage.vue @@ -104,7 +104,7 @@ export default { query($buildId: ID!, $after: String) { build(id: $buildId) { id - notes(after: $after) { + notes(after: $after, first: 10) { edges { node { id