From 07fdf734a96ead3c396f39a2f6933311f81282b8 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Sat, 25 Jan 2025 17:57:39 +0100 Subject: [PATCH] fix(front): Correct pagination on albums page --- front/src/ui/routes/library.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/ui/routes/library.ts b/front/src/ui/routes/library.ts index f79d7df49..15e8ec04c 100644 --- a/front/src/ui/routes/library.ts +++ b/front/src/ui/routes/library.ts @@ -38,7 +38,7 @@ export default [ name: 'library.albums.browse', component: () => import('~/components/library/Albums.vue'), meta: { - paginateBy: 25 + paginateBy: 30 } }, { @@ -47,7 +47,7 @@ export default [ component: () => import('~/components/library/Albums.vue'), props: { scope: 'me' }, meta: { - paginateBy: 25 + paginateBy: 30 } }, {