Skip to content

Commit

Permalink
chore(issue-stream): Revert to using colored dot to indicate error le…
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSun48 authored Oct 15, 2024
1 parent 004a7f7 commit b63e6fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions static/app/components/eventOrGroupExtraDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {Fragment} from 'react';
import {css} from '@emotion/react';
import styled from '@emotion/styled';

import {ErrorLevelText} from 'sentry/components/events/errorLevelText';
import ErrorLevel from 'sentry/components/events/errorLevel';
import EventAnnotation from 'sentry/components/events/eventAnnotation';
import GlobalSelectionLink from 'sentry/components/globalSelectionLink';
import ShortId from 'sentry/components/group/inboxBadges/shortId';
Expand Down Expand Up @@ -89,6 +89,7 @@ function EventOrGroupExtraDetails({
const level = 'level' in data ? data.level : null;

const items = [
hasNewLayout && level ? <ErrorLevel level={level} size={'10px'} /> : null,
shortId ? (
<ShortId
shortId={shortId}
Expand All @@ -97,7 +98,6 @@ function EventOrGroupExtraDetails({
}
/>
) : null,
hasNewLayout && level ? <ErrorLevelText level={level} /> : null,
isUnhandled ? <UnhandledTag /> : null,
showLifetime ? (
<Lifetime firstSeen={firstSeen} lastSeen={lastSeen} lifetime={lifetime} />
Expand Down

0 comments on commit b63e6fd

Please sign in to comment.