Skip to content

Commit fbef862

Browse files
authored
ref(issues): Standardize fingerprint value display styling in grouping info panel (#94242)
<!-- Describe your PR here. --> Make "Fingerprint values" and "Client fingerprint values" visually consistent by wrapping both in TextWithQuestionTooltip component, ensuring uniform appearance across all fingerprint fields in the grouping variant table. before ![Screenshot 2025-06-24 at 2 42 24 PM](https://github.com/user-attachments/assets/75d39c3e-3acd-4ac8-ad76-247a812e28d1) after ![Screenshot 2025-06-24 at 3 18 58 PM](https://github.com/user-attachments/assets/9d8f54ff-2d50-4a60-843f-9935ea00720b) after with more than 1 item in the array ![Screenshot 2025-06-24 at 3 25 05 PM](https://github.com/user-attachments/assets/8d9f8466-b5ad-421c-b6fc-d30d0bdefc9b) #72290
1 parent d12a00b commit fbef862

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

static/app/components/events/groupingInfo/groupingVariant.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,18 @@ function addFingerprintInfo(data: VariantData, variant: EventGroupVariant) {
4444
]);
4545
}
4646
if ('values' in variant) {
47-
data.push([t('Fingerprint values'), variant.values]);
47+
data.push([
48+
t('Fingerprint values'),
49+
<TextWithQuestionTooltip key="fingerprint-values">
50+
{variant.values?.join(', ') || ''}
51+
</TextWithQuestionTooltip>,
52+
]);
4853
}
4954
if ('client_values' in variant) {
5055
data.push([
5156
t('Client fingerprint values'),
5257
<TextWithQuestionTooltip key="type">
53-
{variant.client_values}
58+
{variant.client_values?.join(', ') || ''}
5459
{'matched_rule' in variant && ( // Only display override tooltip if overriding actually happened
5560
<QuestionTooltip
5661
size="xs"

0 commit comments

Comments
 (0)