forked from Github/frigate
Fix score in search details dialog for old events (#14541)
This commit is contained in:
@@ -287,7 +287,7 @@ function ObjectDetailsTab({
|
||||
return 0;
|
||||
}
|
||||
|
||||
const value = search.data.top_score;
|
||||
const value = search.data.top_score ?? search.top_score ?? 0;
|
||||
|
||||
return Math.round(value * 100);
|
||||
}, [search]);
|
||||
|
||||
Reference in New Issue
Block a user