We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85000f8 commit 271cf10Copy full SHA for 271cf10
src/pagination/PaginationList.js
@@ -82,7 +82,7 @@ class PaginationList extends Component {
82
const start = ((currPage - pageStartIndex) * sizePerPage);
83
const to = Math.min((sizePerPage * (currPage + offset) - 1), dataSize);
84
let total = paginationShowsTotal ? <span>
85
- Showing rows { start } to { to } of { dataSize }
+ Showing rows { start + 1 } to { to + 1 } of { dataSize }
86
</span> : null;
87
88
if (typeof paginationShowsTotal === 'function') {
0 commit comments