Skip to content

Commit 271cf10

Browse files
committed
fix #668
1 parent 85000f8 commit 271cf10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pagination/PaginationList.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ class PaginationList extends Component {
8282
const start = ((currPage - pageStartIndex) * sizePerPage);
8383
const to = Math.min((sizePerPage * (currPage + offset) - 1), dataSize);
8484
let total = paginationShowsTotal ? <span>
85-
Showing rows { start } to&nbsp;{ to } of&nbsp;{ dataSize }
85+
Showing rows { start + 1 } to&nbsp;{ to + 1 } of&nbsp;{ dataSize }
8686
</span> : null;
8787

8888
if (typeof paginationShowsTotal === 'function') {

0 commit comments

Comments
 (0)