From c7eb31981797ae855454aadc4a91f3424addc6ae Mon Sep 17 00:00:00 2001 From: bmccandless Date: Fri, 8 Jan 2021 09:44:17 -0800 Subject: [PATCH] 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 --- client/src/components/brushableHistogram/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/components/brushableHistogram/index.js b/client/src/components/brushableHistogram/index.js index a18608b2..e86e49ff 100644 --- a/client/src/components/brushableHistogram/index.js +++ b/client/src/components/brushableHistogram/index.js @@ -146,7 +146,7 @@ const HistogramFooter = React.memo( - {logFoldChange && pvalAdj ? ( + {logFoldChange !== undefined && pvalAdj !== undefined ? (