Skip to content

Commit

Permalink
Fix call in Chart (apache#3945)
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Nov 28, 2017
1 parent 3a5befb commit 0609e7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion superset/assets/javascripts/chart/Chart.jsx
Expand Up @@ -139,7 +139,7 @@ class Chart extends React.PureComponent {
renderViz() {
const viz = visMap[this.props.vizType];
try {
viz(this, this.props.queryResponse, this.props.actions.setControlValue);
viz(this, this.props.queryResponse, this.props.setControlValue);
} catch (e) {
this.props.actions.chartRenderingFailed(e, this.props.chartKey);
}
Expand Down

0 comments on commit 0609e7a

Please sign in to comment.