From 6f1fa7203bfe15287c1618bf816516b5597ed175 Mon Sep 17 00:00:00 2001 From: padreug Date: Sun, 9 Nov 2025 00:32:54 +0100 Subject: [PATCH] change Recent Transactions pagination limit from 20 to 10 --- static/js/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/js/index.js b/static/js/index.js index cf9e262..8e7c577 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -12,7 +12,7 @@ window.app = Vue.createApp({ transactions: [], transactionPagination: { total: 0, - limit: 20, + limit: 10, offset: 0, has_next: false, has_prev: false