mirror of
https://github.com/apache/superset.git
synced 2026-04-23 18:14:56 +00:00
[explore-v2] make chart container work with existing visualization files (#1333)
* make chart container work with nvd3_vis.js * map vis to module, remove unneeded components * fix linting * use existing query and save btns, don't fork more things * comment out chart and exploreviecontainer specs * make a change because i think the js test is failing spuriously
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
import React from 'react';
|
||||
import ChartContainer from './ChartContainer';
|
||||
import ControlPanelsContainer from './ControlPanelsContainer';
|
||||
import QueryAndSaveButtons from './QueryAndSaveButtons';
|
||||
import QueryAndSaveBtns from '../../explore/components/QueryAndSaveBtns';
|
||||
|
||||
export default class ExploreViewContainer extends React.Component {
|
||||
constructor(props) {
|
||||
@@ -27,11 +27,11 @@ export default class ExploreViewContainer extends React.Component {
|
||||
>
|
||||
<div className="row">
|
||||
<div className="col-sm-4">
|
||||
<QueryAndSaveButtons
|
||||
<QueryAndSaveBtns
|
||||
canAdd="True"
|
||||
onQuery={() => {}}
|
||||
/>
|
||||
<br />
|
||||
<br /><br />
|
||||
<ControlPanelsContainer />
|
||||
</div>
|
||||
<div className="col-sm-8">
|
||||
|
||||
Reference in New Issue
Block a user