Fix call in Chart (#3945)

This commit is contained in:
Maxime Beauchemin
2017-11-27 21:06:47 -08:00
committed by GitHub
parent f9202ba179
commit c5ddf57124

View File

@@ -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);
}