Skip to content

Commit

Permalink
fix #1510
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Jul 29, 2017
1 parent ea9d97d commit a2eb599
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions src/pagination/PaginationList.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,15 +124,16 @@ class PaginationList extends Component {
<div className='row' style={ { marginTop: 15 } }>
{
content ||
<div>
<div className='col-md-6 col-xs-6 col-sm-6 col-lg-6'>
{ total }{ sizePerPageList.length > 1 ? dropdown : null }
</div>
<div style={ { display: hidePageList } }
className='col-md-6 col-xs-6 col-sm-6 col-lg-6'>
{ pageBtns }
</div>
</div>
[ (
<div className='col-md-6 col-xs-6 col-sm-6 col-lg-6'>
{ total }{ sizePerPageList.length > 1 ? dropdown : null }
</div>
), (
<div style={ { display: hidePageList } }
className='col-md-6 col-xs-6 col-sm-6 col-lg-6'>
{ pageBtns }
</div>
) ]
}
</div>
);
Expand Down

0 comments on commit a2eb599

Please sign in to comment.