Skip to content

Commit

Permalink
Deletion of a forgotten console.log in material-table.js (#814)
Browse files Browse the repository at this point in the history
A console.log had been forgotten. It show data everytime a row is developped or closed.
  • Loading branch information
AllytaDemiangel committed Dec 8, 2023
1 parent e3ec3ff commit 75b559b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/material-table.js
Original file line number Diff line number Diff line change
Expand Up @@ -835,7 +835,6 @@ export default class MaterialTable extends React.Component {
onToggleDetailPanel = (path, render) => {
const row = this.dataManager.changeDetailPanelVisibility(path, render);
this.setState(this.dataManager.getRenderState());
console.log(row, row.tableData.showDetailPanel ? 'open' : 'closed');
this.props.onTreeExpandChange &&
this.props.onDetailPanelChange(
row,
Expand Down

0 comments on commit 75b559b

Please sign in to comment.