Browse Source

fix(issues): Fix title of unlabeled errors (#69195)

Relates to INC721.
Matej Minar 10 months ago
parent
commit
7022a3c857
1 changed files with 1 additions and 1 deletions
  1. 1 1
      static/app/utils/events.tsx

+ 1 - 1
static/app/utils/events.tsx

@@ -130,7 +130,7 @@ export function getTitle(
 
   switch (type) {
     case EventOrGroupType.ERROR: {
-      if (customTitle) {
+      if (customTitle && customTitle !== '<unlabeled event>') {
         return {
           title: customTitle,
           subtitle: culprit,