diff --git a/src/app/features/genes/components/gene-comparison-tool/gene-comparison-tool.component.ts b/src/app/features/genes/components/gene-comparison-tool/gene-comparison-tool.component.ts index 8c87d4bf..6e4f1489 100644 --- a/src/app/features/genes/components/gene-comparison-tool/gene-comparison-tool.component.ts +++ b/src/app/features/genes/components/gene-comparison-tool/gene-comparison-tool.component.ts @@ -1019,10 +1019,10 @@ export class GeneComparisonToolComponent implements OnInit, AVI, OnDestroy { ...baseRow, ...[ tissueName, - tissue?.logfc || '', - tissue?.ci_r || '', - tissue?.ci_l || '', - tissue?.adj_p_val || '', + tissue ? tissue.logfc : '', + tissue ? tissue.ci_r : '', + tissue ? tissue.ci_l : '', + tissue ? tissue.adj_p_val : '', g.biodomains?.join(',') || '', ], ]);