Remove console option
parent
2c4676a26b
commit
ee24c0d2b1
|
@ -8,7 +8,7 @@ import MultiTable from './MultiTable'
|
||||||
|
|
||||||
const RefreshingLineGraph = AutoRefresh(LineGraph)
|
const RefreshingLineGraph = AutoRefresh(LineGraph)
|
||||||
const RefreshingSingleStat = AutoRefresh(SingleStat)
|
const RefreshingSingleStat = AutoRefresh(SingleStat)
|
||||||
const VIEWS = ['graph', 'table', 'console']
|
const VIEWS = ['graph', 'table']
|
||||||
|
|
||||||
const {
|
const {
|
||||||
arrayOf,
|
arrayOf,
|
||||||
|
@ -80,8 +80,6 @@ const Visualization = React.createClass({
|
||||||
return this.renderGraph(queries)
|
return this.renderGraph(queries)
|
||||||
case 'table':
|
case 'table':
|
||||||
return <MultiTable queries={queries} height={heightPixels} />
|
return <MultiTable queries={queries} height={heightPixels} />
|
||||||
case 'console':
|
|
||||||
return <div>I'm a console</div>
|
|
||||||
default:
|
default:
|
||||||
this.renderGraph(queries)
|
this.renderGraph(queries)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue