Skip to content

Commit a2eb599

Browse files
committed
fix #1510
1 parent ea9d97d commit a2eb599

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

src/pagination/PaginationList.js

+10-9
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,16 @@ class PaginationList extends Component {
124124
<div className='row' style={ { marginTop: 15 } }>
125125
{
126126
content ||
127-
<div>
128-
<div className='col-md-6 col-xs-6 col-sm-6 col-lg-6'>
129-
{ total }{ sizePerPageList.length > 1 ? dropdown : null }
130-
</div>
131-
<div style={ { display: hidePageList } }
132-
className='col-md-6 col-xs-6 col-sm-6 col-lg-6'>
133-
{ pageBtns }
134-
</div>
135-
</div>
127+
[ (
128+
<div className='col-md-6 col-xs-6 col-sm-6 col-lg-6'>
129+
{ total }{ sizePerPageList.length > 1 ? dropdown : null }
130+
</div>
131+
), (
132+
<div style={ { display: hidePageList } }
133+
className='col-md-6 col-xs-6 col-sm-6 col-lg-6'>
134+
{ pageBtns }
135+
</div>
136+
) ]
136137
}
137138
</div>
138139
);

0 commit comments

Comments
 (0)