mirror of
https://github.com/chanzuckerberg/cellxgene.git
synced 2026-09-22 04:08:12 +08:00
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:
@@ -146,7 +146,7 @@ const HistogramFooter = React.memo(
|
||||
</span>
|
||||
</div>
|
||||
|
||||
{logFoldChange && pvalAdj ? (
|
||||
{logFoldChange !== undefined && pvalAdj !== undefined ? (
|
||||
<div
|
||||
style={{
|
||||
display: "flex",
|
||||
|
||||
Reference in New Issue
Block a user