Skip to content

Commit

Permalink
was supposed to be download link for design not correlation matrix...
Browse files Browse the repository at this point in the history
  • Loading branch information
rwblair committed Jan 14, 2020
1 parent 9d6293a commit aa14b85
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions neuroscout/frontend/src/analysis_builder/Report.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,14 @@ class Plots extends React.Component<{plots: any[], corr_plots: any[], runTitles:
<TabPane tab={this.props.runTitles[i]} key={'' + i}>
<Collapse bordered={false} defaultActiveKey={['dm']}>
<Panel header="Design Matrix" key="dm">
<VegaPlot spec={this.props.plots[i]}/>
<VegaPlot
spec={this.props.plots[i]}
title={this.props.runTitles[i].replace(/ /g, '').concat('.png')}
/>
</Panel>
<Panel header="Correlation Matrix" key="cm">
<VegaPlot
spec={this.props.corr_plots[i]}
title={this.props.runTitles[i].replace(/ /g, '').concat('.png')}
/>
</Panel>
</Collapse>
Expand Down

0 comments on commit aa14b85

Please sign in to comment.