Skip to content

Commit 9ccf5ab

Browse files
author
Fatih
committed
don't hide pagination size selector column
1 parent 64ed6d3 commit 9ccf5ab

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/pagination/PaginationList.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ class PaginationList extends React.Component {
8080

8181
return (
8282
<div className="row">
83-
{
84-
this.props.sizePerPageList.length > 1 ?
85-
<div className="col-md-1">
83+
<div className="col-md-6">
84+
{
85+
this.props.sizePerPageList.length > 1 ?
8686
<div className="dropdown">
8787
<button className="btn btn-default dropdown-toggle" type="button" id="pageDropDown" data-toggle="dropdown"
8888
aria-expanded="true">
@@ -93,9 +93,9 @@ class PaginationList extends React.Component {
9393
{sizePerPageList}
9494
</ul>
9595
</div>
96+
: ""
97+
}
9698
</div>
97-
: ""
98-
}
9999
<div className="col-md-6">
100100
<ul className="pagination" style={pageListStyle}>
101101
{pageBtns}

0 commit comments

Comments
 (0)