Skip to content

Commit

Permalink
Merge branch 'experimental' of github.com:material-table-core/core in…
Browse files Browse the repository at this point in the history
…to experimental
  • Loading branch information
Domino987 committed Nov 20, 2022
2 parents 3bfe62a + 1df7abc commit 948bace
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/m-table-body.js
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ function MTableBody(props) {
: undefined
).current;
return (
<TableBody>
<TableBody ref={props.forwardedRef}>
{options.filtering && (
<props.components.FilterRow
columns={columns}
Expand Down Expand Up @@ -267,6 +267,7 @@ MTableBody.propTypes = {
PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.object, PropTypes.func]))
]),
errorState: PropTypes.oneOfType([PropTypes.object, PropTypes.bool]),
forwardedRef: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
getFieldValue: PropTypes.func.isRequired,
hasAnyEditingRow: PropTypes.bool,
hasDetailPanel: PropTypes.bool.isRequired,
Expand Down

0 comments on commit 948bace

Please sign in to comment.