mirror of
https://github.com/apache/superset.git
synced 2026-04-25 02:55:07 +00:00
Added controls for Table Viz (#1253)
* Added controls for Table Viz * Change control panel container to stateless * Changed specs * Resolved conflicts
This commit is contained in:
@@ -20,11 +20,11 @@ const defaultProps = {
|
||||
};
|
||||
|
||||
class GroupBy extends React.Component {
|
||||
changeColumns(groupByColumnOpts) {
|
||||
this.props.actions.setGroupByColumns(groupByColumnOpts);
|
||||
changeColumns(groupByColumns) {
|
||||
this.props.actions.setGroupByColumns(groupByColumns);
|
||||
}
|
||||
changeMetrics(metricsOpts) {
|
||||
this.props.actions.setMetrics(metricsOpts);
|
||||
changeMetrics(metrics) {
|
||||
this.props.actions.setMetrics(metrics);
|
||||
}
|
||||
render() {
|
||||
return (
|
||||
|
||||
Reference in New Issue
Block a user