Skip to content

Commit e9df130

Browse files
chore(agg-spans): Update language on span frequency (#58484)
Co-authored-by: Dominik Buszowiecki <[email protected]>
1 parent 35068ea commit e9df130

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

static/app/components/events/interfaces/spans/spanFrequencyBox.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ export function SpanFrequencyBox({span}: Props) {
3535
<StyledBox frequency={frequency ?? 0}>
3636
<Tooltip
3737
isHoverable
38-
title={tct(
39-
'This span occurs in [x] out of every [total] events ([percentage] frequency)',
40-
{x: count, total, percentage: formatPercentage(frequency ?? 0, 0)}
41-
)}
38+
title={tct('This span occurred in [x] out of [total] events aggregated', {
39+
x: count,
40+
total,
41+
})}
4242
>
4343
{formatPercentage(frequency ?? 0, 0)}
4444
</Tooltip>

0 commit comments

Comments
 (0)