File tree 2 files changed +1
-13
lines changed
2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change 1
1
import { Fragment } from 'react' ;
2
2
import styled from '@emotion/styled' ;
3
3
4
- import { space } from 'sentry/styles/space' ;
5
4
import type { Event } from 'sentry/types/event' ;
6
5
import type { BaseGroup , GroupTombstoneHelper } from 'sentry/types/group' ;
7
6
import { getTitle , isTombstone } from 'sentry/utils/events' ;
@@ -48,12 +47,6 @@ function EventOrGroupTitle({
48
47
) : (
49
48
titleLabel
50
49
) }
51
- { secondaryTitle && (
52
- < Fragment >
53
- < Spacer width = { space ( 1 ) } />
54
- < Message title = { secondaryTitle } > { secondaryTitle } </ Message >
55
- </ Fragment >
56
- ) }
57
50
</ span >
58
51
) ;
59
52
}
@@ -102,11 +95,6 @@ const Subtitle = styled('em')`
102
95
height: 100%;
103
96
` ;
104
97
105
- const Message = styled ( 'span' ) `
106
- font-weight: ${ p => p . theme . fontWeightNormal } ;
107
- font-size: ${ p => p . theme . fontSizeMedium } ;
108
- ` ;
109
-
110
98
const Title = styled ( 'span' ) `
111
99
position: relative;
112
100
font-size: ${ p => p . theme . fontSizeMedium } ;
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ const NoMessage = styled(Message)`
84
84
` ;
85
85
86
86
const ErrorLevelWithMargin = styled ( ErrorLevel ) < { hasDivider : boolean } > `
87
- margin-right: ${ p => ( p . hasDivider ? 0 : space ( 0.5 ) ) } ;
87
+ margin-right: ${ p => ( p . hasDivider ? 0 : space ( 0.25 ) ) } ;
88
88
` ;
89
89
90
90
export default EventMessage ;
You can’t perform that action at this time.
0 commit comments