This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new c5ddf57 Fix call in Chart (#3945)
c5ddf57 is described below
commit c5ddf571243df14ce812ca0924c7784aefb7eddf
Author: Maxime Beauchemin <[email protected]>
AuthorDate: Mon Nov 27 21:06:47 2017 -0800
Fix call in Chart (#3945)
---
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 f7c7e69..a4e3dd2 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);
}
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].