Skip to content

Commit

Permalink
Temperary fix of a slice bug (#1648)
Browse files Browse the repository at this point in the history
  • Loading branch information
vera-liu committed Nov 22, 2016
1 parent face524 commit bdae570
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Expand Up @@ -109,16 +109,17 @@ class ChartContainer extends React.Component {
},

clearError: () => {
this.props.actions.removeChartAlert();
// no need to do anything here since Alert is closable
// query button will also remove Alert
},

error(msg) {
this.props.actions.chartUpdateFailed(msg);
props.actions.chartUpdateFailed(msg);
},

d3format: (col, number) => {
// mock d3format function in Slice object in superset.js
const format = this.props.column_formats[col];
const format = props.column_formats[col];
return d3format(format, number);
},
};
Expand Down
1 change: 1 addition & 0 deletions superset/assets/visualizations/nvd3_vis.js
Expand Up @@ -60,6 +60,7 @@ function nvd3Vis(slice) {

const render = function () {
d3.json(slice.jsonEndpoint(), function (error, payload) {
slice.container.html('');
// Check error first, otherwise payload can be null
if (error) {
slice.error(error.responseText, error);
Expand Down

0 comments on commit bdae570

Please sign in to comment.