diff --git a/web/src/components/overlay/detail/SearchDetailDialog.tsx b/web/src/components/overlay/detail/SearchDetailDialog.tsx index e35abcf77b..1bb8871816 100644 --- a/web/src/components/overlay/detail/SearchDetailDialog.tsx +++ b/web/src/components/overlay/detail/SearchDetailDialog.tsx @@ -296,7 +296,7 @@ function ObjectDetailsTab({ } if (search.sub_label) { - return Math.round((search.data?.top_score ?? 0) * 100); + return Math.round((search.data?.sub_label_score ?? 0) * 100); } else { return undefined; }