This commit is contained in:
Allen 2018-11-10 15:42:59 +08:00 committed by GitHub
parent 569dd61463
commit 2530a70c00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
const PaginationTotal = props => ( const PaginationTotal = props => (
<span className="react-bootstrap-table-pagination-total"> <span className="react-bootstrap-table-pagination-total">
&nbsp;Showing rows { props.from } to&nbsp;{ props.to + 1 } of&nbsp;{ props.dataSize } &nbsp;Showing rows { props.from } to&nbsp;{ props.to } of&nbsp;{ props.dataSize }
</span> </span>
); );