From 670f58fcff59ac476e42d26cf666d44223a97f64 Mon Sep 17 00:00:00 2001 From: Edin Dazdarevic Date: Wed, 8 Apr 2015 00:11:44 +0200 Subject: [PATCH] increased max number of pages on itemlist component --- front-ui/app/components/items/itemList.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/front-ui/app/components/items/itemList.js b/front-ui/app/components/items/itemList.js index 1647382..1bcb65f 100644 --- a/front-ui/app/components/items/itemList.js +++ b/front-ui/app/components/items/itemList.js @@ -24,7 +24,7 @@ var ItemList = React.createClass({ {items} {this.getPages()} - + ); }, @@ -38,7 +38,7 @@ var ItemList = React.createClass({ return ""; } - var maxSlots = 3; + var maxSlots = 10; var selectedIndex = Math.floor(this.props.currentOffset / this.props.limit); var start, end; @@ -70,4 +70,4 @@ var ItemList = React.createClass({ }); -module.exports = ItemList; +module.exports = ItemList;