Skip to content

Commit

Permalink
fix: clarify that the tooltip currently shows all the clades
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-aksamentov committed Jun 18, 2020
1 parent 55e1cbe commit ac12ea6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/web/src/components/Main/MutationTooltip.tsx
Expand Up @@ -20,10 +20,10 @@ export function MutationTooltip({ mutation, sequence }: MutationTooltipProps) {
return (
<Popover className="popover-mutation" target={id} placement="auto" isOpen hideArrow delay={0} fade={false}>
<PopoverBody>
<div>{`Sequence ${seqName}`}</div>
<div>{`Clades ${cladesList}`}</div>
<div>{`Position ${positionOneBased}`}</div>
<div>{`Allele ${allele}`}</div>
<div>{`Sequence: ${seqName}`}</div>
<div>{`Clades (all): ${cladesList}`}</div>
<div>{`Position: ${positionOneBased}`}</div>
<div>{`Allele: ${allele}`}</div>
</PopoverBody>
</Popover>
)
Expand Down

0 comments on commit ac12ea6

Please sign in to comment.