Skip to content

Commit

Permalink
Fix label on synteny tooltip
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Feb 6, 2025
1 parent 59c1e24 commit ddb7cd1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export function getTooltip({
identity ? `Identity: ${identity.toPrecision(2)}` : '',
cigarOp ? `CIGAR operator: ${cigarOp}${cigarOpLen}` : '',
n1 ? `Name 1: ${n1}` : '',
n2 ? `Name 1: ${n2}` : '',
n2 ? `Name 2: ${n2}` : '',
]
.filter(f => !!f)
.join('<br/>')
Expand Down

0 comments on commit ddb7cd1

Please sign in to comment.