math.round

This commit is contained in:
Nicolas Mowen 2025-03-27 17:29:32 -06:00
parent 361197c7fb
commit fd98449479

View File

@ -481,7 +481,7 @@ function TrainingGrid({
{t("details.confidence")}
</div>
<div className="text-sm capitalize">
{(selectedEvent?.data?.sub_label_score || 0) * 100}%
{Math.round(selectedEvent?.data?.sub_label_score || 0) * 100}%
</div>
</div>
)}