From ef8f639101333a4ffc4afcdfb57f9941e9939c5f Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Wed, 30 Aug 2017 16:08:41 +0300 Subject: [PATCH] Reduce perPage count on Your listings page --- src/containers/ManageListingsPage/ManageListingsPage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/containers/ManageListingsPage/ManageListingsPage.js b/src/containers/ManageListingsPage/ManageListingsPage.js index 2fb29dd9..6b1e2858 100644 --- a/src/containers/ManageListingsPage/ManageListingsPage.js +++ b/src/containers/ManageListingsPage/ManageListingsPage.js @@ -18,9 +18,9 @@ import { import css from './ManageListingsPage.css'; // Pagination page size might need to be dynamic on responsive page layouts -// Current design has max 3 columns 96 is divisible by 2 and 3 +// Current design has max 3 columns 42 is divisible by 2 and 3 // So, there's enough cards to fill all columns on full pagination pages -const RESULT_PAGE_SIZE = 96; +const RESULT_PAGE_SIZE = 42; export class ManageListingsPageComponent extends Component { constructor(props) {