We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af15118 commit ffb67dbCopy full SHA for ffb67db
static/app/views/issueDetails/header.tsx
@@ -273,7 +273,9 @@ function GroupHeader({
273
<HeaderRow>
274
<TitleWrapper>
275
<TitleHeading>
276
- {group.issueType in NEW_ISSUE_TYPES && <StyledFeatureBadge type="new" />}
+ {NEW_ISSUE_TYPES.includes(group.issueType) && (
277
+ <StyledFeatureBadge type="new" />
278
+ )}
279
<h3>
280
<StyledEventOrGroupTitle data={group} />
281
</h3>
0 commit comments