Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Commit

Permalink
fix: both the CSS and className were expecting true/false strings
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas committed Dec 4, 2019
1 parent 9a4ceff commit fe7b24b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ class TTestTable extends React.Component {
values.push(
<Td
key={numGroups + 3}
className={this.getSignificance(i)}
className={this.getSignificance(i).toString()}
column="significant"
data={this.getSignificance(i)}
/>,
Expand Down

0 comments on commit fe7b24b

Please sign in to comment.