|
@@ -8,6 +8,7 @@ import {Breadcrumbs} from 'sentry/components/breadcrumbs';
|
|
|
import Count from 'sentry/components/count';
|
|
|
import EventOrGroupTitle from 'sentry/components/eventOrGroupTitle';
|
|
|
import EventMessage from 'sentry/components/events/eventMessage';
|
|
|
+import FeatureBadge from 'sentry/components/featureBadge';
|
|
|
import {GroupStatusBadge} from 'sentry/components/group/inboxBadges/statusBadge';
|
|
|
import * as Layout from 'sentry/components/layouts/thirds';
|
|
|
import Link from 'sentry/components/links/link';
|
|
@@ -29,7 +30,7 @@ import useOrganization from 'sentry/utils/useOrganization';
|
|
|
import GroupPriority from 'sentry/views/issueDetails/groupPriority';
|
|
|
|
|
|
import GroupActions from './actions';
|
|
|
-import {ShortIdBreadrcumb} from './shortIdBreadcrumb';
|
|
|
+import {ShortIdBreadcrumb} from './shortIdBreadcrumb';
|
|
|
import {Tab} from './types';
|
|
|
import {ReprocessingStatus} from './utils';
|
|
|
|
|
@@ -227,7 +228,7 @@ function GroupHeader({
|
|
|
const disableActions = !!disabledTabs.length;
|
|
|
|
|
|
const shortIdBreadcrumb = (
|
|
|
- <ShortIdBreadrcumb organization={organization} project={project} group={group} />
|
|
|
+ <ShortIdBreadcrumb organization={organization} project={project} group={group} />
|
|
|
);
|
|
|
|
|
|
const issueTypeConfig = getConfigForIssueType(group, project);
|
|
@@ -260,6 +261,9 @@ function GroupHeader({
|
|
|
<HeaderRow>
|
|
|
<TitleWrapper>
|
|
|
<TitleHeading>
|
|
|
+ {group.issueCategory === IssueCategory.REPLAY && (
|
|
|
+ <StyledFeatureBadge type="new" />
|
|
|
+ )}
|
|
|
<h3>
|
|
|
<StyledEventOrGroupTitle data={group} />
|
|
|
</h3>
|
|
@@ -377,3 +381,7 @@ const PriorityContainer = styled('div')`
|
|
|
/* Ensures that the layout doesn't shift when changing priority */
|
|
|
min-width: 80px;
|
|
|
`;
|
|
|
+
|
|
|
+const StyledFeatureBadge = styled(FeatureBadge)`
|
|
|
+ align-items: flex-start;
|
|
|
+`;
|