Skip to content
Snippets Groups Projects
Commit a5c61707 authored by Allen Gilliland's avatar Allen Gilliland
Browse files

don't show visualization settings on Object Detail. (fixes #811)

parent 2579a2c8
No related branches found
No related tags found
No related merge requests found
......@@ -73,9 +73,14 @@ export default React.createClass({
},
renderHeader: function() {
var visualizationSettings = false;
if (!this.props.isObjectDetail) {
visualizationSettings = (<VisualizationSettings {...this.props}/>);
}
return (
<div className="relative flex full mt3">
<VisualizationSettings {...this.props}/>
{visualizationSettings}
<div className="absolute left right ml-auto mr-auto layout-centered flex">
<RunButton
canRun={this.canRun()}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment