Skip to content

Commit

Permalink
don't hide pagination size selector column
Browse files Browse the repository at this point in the history
  • Loading branch information
Fatih committed Dec 14, 2015
1 parent 64ed6d3 commit 9ccf5ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/pagination/PaginationList.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ class PaginationList extends React.Component {

return (
<div className="row">
{
this.props.sizePerPageList.length > 1 ?
<div className="col-md-1">
<div className="col-md-6">
{
this.props.sizePerPageList.length > 1 ?
<div className="dropdown">
<button className="btn btn-default dropdown-toggle" type="button" id="pageDropDown" data-toggle="dropdown"
aria-expanded="true">
Expand All @@ -93,9 +93,9 @@ class PaginationList extends React.Component {
{sizePerPageList}
</ul>
</div>
: ""
}
</div>
: ""
}
<div className="col-md-6">
<ul className="pagination" style={pageListStyle}>
{pageBtns}
Expand Down

0 comments on commit 9ccf5ab

Please sign in to comment.