diff --git a/static/app/views/issueDetails/groupTags/tagDistribution.tsx b/static/app/views/issueDetails/groupTags/tagDistribution.tsx index 70af0b136966c4..1e9d479758dc38 100644 --- a/static/app/views/issueDetails/groupTags/tagDistribution.tsx +++ b/static/app/views/issueDetails/groupTags/tagDistribution.tsx @@ -15,7 +15,7 @@ export function TagPreviewDistribution({tag}: {tag: GroupTag}) { const totalVisible = tag.topValues.reduce((sum, value) => sum + value.count, 0); const hasOther = totalVisible < tag.totalValues; - const otherPercentage = Math.round( + const otherPercentage = Math.floor( percent(tag.totalValues - totalVisible, tag.totalValues) ); const otherDisplayPercentage = @@ -62,7 +62,7 @@ export function TagDistribution({tag}: {tag: GroupTag}) { const totalVisible = visibleTagValues.reduce((sum, value) => sum + value.count, 0); const hasOther = totalVisible < tag.totalValues; - const otherPercentage = Math.round( + const otherPercentage = Math.floor( percent(tag.totalValues - totalVisible, tag.totalValues) ); const otherDisplayPercentage =