Skip to content

Commit

Permalink
fix #668
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenFang committed Sep 3, 2016
1 parent 85000f8 commit 271cf10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pagination/PaginationList.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ class PaginationList extends Component {
const start = ((currPage - pageStartIndex) * sizePerPage);
const to = Math.min((sizePerPage * (currPage + offset) - 1), dataSize);
let total = paginationShowsTotal ? <span>
Showing rows { start } to&nbsp;{ to } of&nbsp;{ dataSize }
Showing rows { start + 1 } to&nbsp;{ to + 1 } of&nbsp;{ dataSize }
</span> : null;

if (typeof paginationShowsTotal === 'function') {
Expand Down

0 comments on commit 271cf10

Please sign in to comment.