mirror of
https://github.com/apache/superset.git
synced 2026-04-17 23:25:05 +00:00
Temperary fix of a slice bug (#1648)
This commit is contained in:
@@ -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);
|
||||
},
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user