Browse Source

feat(replay): Show custom tags inside the Feedback details panel (#62712)

Ryan Albrecht 1 year ago
parent
commit
b0c13a6b1f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      static/app/components/feedback/hydrateEventTags.tsx

+ 1 - 0
static/app/components/feedback/hydrateEventTags.tsx

@@ -10,6 +10,7 @@ export default function hydrateEventTags(
   const eventTags = eventData.tags;
 
   const unorderedTags = {
+    ...eventTags.reduce((combined, tag) => ({...combined, [tag.key]: tag.value}), {}),
     ...(context.browser?.name ? {'browser.name': context.browser.name} : {}),
     ...(context.browser?.version ? {'browser.version': context.browser.version} : {}),
     ...(context.device?.brand ? {'device.brand': context.device?.brand} : {}),