Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
zhaoyongjie committed Jan 9, 2021
1 parent 8aa0f4a commit d38c349
Showing 1 changed file with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,10 +119,13 @@ export default class AdhocMetricEditPopover extends React.Component {
}

onRestStateAndClose() {
this.setState({
adhocMetric: this.props.adhocMetric,
savedMetric: this.props.savedMetric,
}, this.props.onClose);
this.setState(
{
adhocMetric: this.props.adhocMetric,
savedMetric: this.props.savedMetric,
},
this.props.onClose,
);
}

onColumnChange(columnId) {
Expand Down

0 comments on commit d38c349

Please sign in to comment.