Skip to content

Commit

Permalink
fix: pass row and field to custom cell/row for processing on re-render
Browse files Browse the repository at this point in the history
  • Loading branch information
harshpatel-crest committed May 8, 2021
1 parent d285772 commit f5a845e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/main/webapp/components/table/CustomTableControl.jsx
Expand Up @@ -52,7 +52,7 @@ class CustomTableControl extends Component {

render() {
if (!this.state.loading) {
this.customControl.render();
this.customControl.render(this.props.row, this.props.field);
}
return (
<>
Expand Down

0 comments on commit f5a845e

Please sign in to comment.