Skip to content

Commit

Permalink
UI fix to display negated annotation association correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
VarunReddy1111 committed Dec 6, 2024
1 parent cb646fd commit 5d1937f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/dataTable/AnnotatedEntitiesPopupCuration.js
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function AnnotatedEntitiesPopupCuration({ children, entities, mainRowCurie, pubM
<tr key={entity.id}>
{columnNameSet.has("Name") && <td>{renderLink(entity)}</td>}
{columnNameSet.has("Type") && <td><TypeCellCuration subject={entity.diseaseAnnotationSubject}/></td>}
{columnNameSet.has("Association") && <td><AssociationCellCuration association={entity.relation?.name}/></td>}
{columnNameSet.has("Association") && <td><AssociationCellCuration association={entity.fullRelationString}/></td>}
{columnNameSet.has("Additional Implicated Genes") && <td><AssertedGenes assertedGenes={entity.assertedGenes} mainRowCurie={mainRowCurie}/></td>}
{(columnNameSet.has("Experimental Condition") && entity.conditionRelations) && <td><ExperimentalConditionCellCuration conditions={entity.conditionRelations}/></td>}
{(columnNameSet.has("Experimental Condition") && entity.conditionModifiers) && <td><ExperimentalConditionCellCuration conditions={entity.conditionModifiers}/></td>}
Expand Down

0 comments on commit 5d1937f

Please sign in to comment.