Skip to content

Commit

Permalink
log dataType
Browse files Browse the repository at this point in the history
  • Loading branch information
Dert1129 committed Mar 4, 2024
1 parent 52df874 commit d3167f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/ExpressionTables/DiffexByCluster.js
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ class DiffexByCluster extends Component {
};

render() {
console.log(this.props.dataType)
return (
<div className='height-wrapper mb-3 mt-3'>
<Container id='outer-wrapper'>
Expand All @@ -192,7 +193,7 @@ class DiffexByCluster extends Component {
<Col xs='12' className='text-end'>
<CSVLink
onClick={() => handleGoogleAnalyticsEvent('Explorer', 'Download', this.getExportFilename())}
data={this.cleanResults(this.state.diffexData, this.state.dataType)}
data={this.cleanResults(this.state.diffexData, this.props.dataType)}
filename={this.getExportFilename()}
target='_blank'
className='text-body icon-container'
Expand Down

0 comments on commit d3167f5

Please sign in to comment.