Skip to content

Commit

Permalink
copy: include score label to clarify
Browse files Browse the repository at this point in the history
  • Loading branch information
annavik committed Jan 27, 2025
1 parent 5622d09 commit 99ce801
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ export const IdentificationSummary = ({
)}
{identification.score && (
<div className={styles.details}>
<span>{`${identification.score.toPrecision(4)}`}</span>
<span>
{translate(STRING.FIELD_LABEL_SCORE)}{' '}
{`${identification.score.toPrecision(4)}`}
</span>
{identification.terminal !== undefined && (
<span>
{' | '}
Expand Down

0 comments on commit 99ce801

Please sign in to comment.