Skip to content

Commit

Permalink
Fix refseq table style (#1206)
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinlu3 authored Feb 28, 2025
1 parent 50e494b commit b7080f1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/webapp/app/pages/genePage/GeneAdditionalInfoTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,21 +110,21 @@ const getRefSeqText = (grch37: string, grch38: string) => {
return (
<div>
{grch37 && (
<div>
<div className="d-flex">
<RefSeqLinkout
refSeq={grch37}
referenceGenome={REFERENCE_GENOME.GRCh37}
/>{' '}
({REFERENCE_GENOME.GRCh37})
/>
<span className="ml-1">({REFERENCE_GENOME.GRCh37})</span>
</div>
)}
{grch38 && (
<div>
<div className="d-flex">
<RefSeqLinkout
refSeq={grch38}
referenceGenome={REFERENCE_GENOME.GRCh38}
/>{' '}
({REFERENCE_GENOME.GRCh38})
/>
<span className="ml-1">({REFERENCE_GENOME.GRCh38})</span>
</div>
)}
</div>
Expand Down

0 comments on commit b7080f1

Please sign in to comment.