Skip to content

Commit

Permalink
fix(tags): Fallback to user value if user items are malformed (on cu…
Browse files Browse the repository at this point in the history
…rrent UI) (#81751)

Follow up to #81733 for the old
UI. oops


![image](https://github.com/user-attachments/assets/2f6fdac4-83e5-4b02-841e-a3410c2c0a71)
  • Loading branch information
leeandher authored Dec 5, 2024
1 parent 2e755ac commit d794413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/views/issueDetails/groupTagValues.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export function GroupTagValues() {
>
{key === 'user' ? (
<UserBadge
user={{...tagValue, id: tagValue.id ?? ''}}
user={{...tagValue, id: tagValue.id ?? tagValue.value}}
avatarSize={20}
hideEmail
/>
Expand Down

0 comments on commit d794413

Please sign in to comment.