Skip to content

Commit

Permalink
Merge pull request #171 from steffenwittig/master
Browse files Browse the repository at this point in the history
fix(CDataTable): correct itemsPerPageSelect padding
  • Loading branch information
xidedix authored Dec 22, 2020
2 parents 939098f + 398f0f0 commit 39c4625
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/table/CDataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ const CDataTable = props => {
}
{
itemsPerPageSelect &&
<div className={'col-sm-6 p-0' + (!(tableFilter || cleaner) && ' offset-sm-6')}>
<div className={'col-sm-6 p-0 ' + (!(tableFilter || cleaner) && ' offset-sm-6')}>
<div className="form-inline justify-content-sm-end">
<label className="mr-2">{paginationSelect.label}</label>
<select
Expand Down
2 changes: 1 addition & 1 deletion src/table/tests/__snapshots__/CDataTable.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Array [
/>
</div>
<div
className="col-sm-6 p-0false"
className="col-sm-6 p-0 false"
>
<div
className="form-inline justify-content-sm-end"
Expand Down

0 comments on commit 39c4625

Please sign in to comment.