From b8d47d1db4166479c59a0e566abaa6e615db7476 Mon Sep 17 00:00:00 2001 From: Steve Richter Date: Fri, 20 Nov 2020 22:10:56 -0500 Subject: [PATCH] Fix default getPerPage for 'md' widths --- ui/src/common/useAlbumsPerPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/common/useAlbumsPerPage.js b/ui/src/common/useAlbumsPerPage.js index 316593f30..5e1ec51c3 100644 --- a/ui/src/common/useAlbumsPerPage.js +++ b/ui/src/common/useAlbumsPerPage.js @@ -4,7 +4,7 @@ import get from 'lodash.get' const getPerPage = (width) => { if (width === 'xs') return 12 if (width === 'sm') return 12 - if (width === 'md') return 15 + if (width === 'md') return 12 if (width === 'lg') return 18 return 36 }