Skip to content

Commit

Permalink
fix(issues): Fix title of unlabeled errors (#69195)
Browse files Browse the repository at this point in the history
Relates to INC721.
  • Loading branch information
matejminar authored Apr 18, 2024
1 parent ca3407b commit 7022a3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/app/utils/events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ export function getTitle(

switch (type) {
case EventOrGroupType.ERROR: {
if (customTitle) {
if (customTitle && customTitle !== '<unlabeled event>') {
return {
title: customTitle,
subtitle: culprit,
Expand Down

0 comments on commit 7022a3c

Please sign in to comment.