From d2f1e60e524e91c5cb1ab00de9a3f75691f943ba Mon Sep 17 00:00:00 2001 From: Maxime Beauchemin Date: Mon, 27 Nov 2017 14:17:30 -0800 Subject: [PATCH] Fix call in Chart --- superset/assets/javascripts/chart/Chart.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset/assets/javascripts/chart/Chart.jsx b/superset/assets/javascripts/chart/Chart.jsx index f7c7e6931fe7..a4e3dd2abddf 100644 --- a/superset/assets/javascripts/chart/Chart.jsx +++ b/superset/assets/javascripts/chart/Chart.jsx @@ -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); }