P value and Log fold change not showing up for all DE results (#2016)

The HistogramFooter needs to distinguish between an undefined
value and a value of 0.  If the pvalAdj was 0, then the logFolChange
was previously not showing up.

 #1888
This commit is contained in:
bmccandless
2021-01-08 09:44:17 -08:00
committed by GitHub
parent db559467a2
commit c7eb319817
@@ -146,7 +146,7 @@ const HistogramFooter = React.memo(
</span>
</div>
{logFoldChange && pvalAdj ? (
{logFoldChange !== undefined && pvalAdj !== undefined ? (
<div
style={{
display: "flex",