Skip to content

Commit

Permalink
ui error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Oct 31, 2024
1 parent b9ead73 commit 8e5d855
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const GCContentCard = (props: Props) => {
: 'N/A'}
</h2>
{/* plus minus */}
<h4 className="text-xl">± {formatNumberWithCommas(Math.round((metadata.statistics?.sd?.gc_content*100 || 0)*100)/100)} </h4>
<h4 className="text-xl">± {formatNumberWithCommas(Math.round((metadata.statistics?.sd?.gc_content || 0)*100)/100)} </h4>
</div>
</StatCard>
);
Expand Down

0 comments on commit 8e5d855

Please sign in to comment.