From 40f18eb3bf410768e2cf7eadedbc08021eea278f Mon Sep 17 00:00:00 2001 From: Mikko Koski Date: Thu, 8 Mar 2018 14:30:51 +0200 Subject: [PATCH] Increase the page size to 24 --- src/containers/SearchPage/SearchPage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/containers/SearchPage/SearchPage.js b/src/containers/SearchPage/SearchPage.js index 728dc6fb..9347c73e 100644 --- a/src/containers/SearchPage/SearchPage.js +++ b/src/containers/SearchPage/SearchPage.js @@ -36,7 +36,7 @@ import css from './SearchPage.css'; // Pagination page size might need to be dynamic on responsive page layouts // Current design has max 3 columns 12 is divisible by 2 and 3 // So, there's enough cards to fill all columns on full pagination pages -const RESULT_PAGE_SIZE = 12; +const RESULT_PAGE_SIZE = 24; const MAX_SEARCH_RESULT_PAGE_SIZE_ON_MAP = 80; // max page size is 100 in API const MAX_SEARCH_RESULT_PAGES_ON_MAP = 1; // page size * n pages = number of listings shown on a map. const MODAL_BREAKPOINT = 768; // Search is in modal on mobile layout