Skip to content

Commit b5e047b

Browse files
Project Overview inter annotator percentage current 0-1
1 parent f28e40a commit b5e047b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/projects/projectId/overview/ProjectOverviewCards.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function ProjectOverviewCards(props: ProjectOverviewCardsProps) {
4747
{props.projectStats.generalStats[card.stats]}
4848
</p>}
4949
{card.stats == CardStatsEnum.INTER_ANNOTATOR && <p className="text-2xl font-semibold text-gray-900">
50-
{props.projectStats.interAnnotatorStat == -1 ? NOT_AVAILABLE : props.projectStats.interAnnotatorStat}
50+
{props.projectStats.interAnnotatorStat == -1 ? NOT_AVAILABLE : (props.projectStats.interAnnotatorStat * 100 + '%')}
5151
</p>}
5252
</Tooltip>
5353
</>

0 commit comments

Comments
 (0)