Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix error
  • Loading branch information
osiux committed Jan 16, 2019
commit 58cfdacfd1d99a7a2529351d6bdd39a804a33386
6 changes: 5 additions & 1 deletion packages/react-bootstrap-table2/src/bootstrap-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,11 @@ class BootstrapTable extends PropsBaseResolver(Component) {
rowEvents={ rowEvents }
/>
{hasFooter && (
<Footer data={ data } columns={ columns } className={ this.props.footerClasses } />
<Footer
data={ this.getData() }
columns={ columns }
className={ this.props.footerClasses }
/>
)}
</table>
</div>
Expand Down