12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import ProjectAvatar from 'sentry/components/avatar/projectAvatar';
- import {
- CrumbContainer,
- EventDrawerBody,
- EventDrawerContainer,
- EventDrawerHeader,
- EventNavigator,
- Header,
- NavigationCrumbs,
- ShortId,
- } from 'sentry/components/events/eventDrawer';
- import {t} from 'sentry/locale';
- import type {Group} from 'sentry/types/group';
- import type {Project} from 'sentry/types/project';
- import GroupSimilarIssues from 'sentry/views/issueDetails/groupSimilarIssues/similarIssues';
- export function SimilarIssuesDrawer({group, project}: {group: Group; project: Project}) {
- return (
- <EventDrawerContainer>
- <EventDrawerHeader>
- <NavigationCrumbs
- crumbs={[
- {
- label: (
- <CrumbContainer>
- <ProjectAvatar project={project} />
- <ShortId>{group.shortId}</ShortId>
- </CrumbContainer>
- ),
- },
- {label: t('Similar Issues')},
- ]}
- />
- </EventDrawerHeader>
- <EventNavigator>
- <Header>{t('Similar Issues')}</Header>
- </EventNavigator>
- <EventDrawerBody>
- <GroupSimilarIssues />
- </EventDrawerBody>
- </EventDrawerContainer>
- );
- }
|