Skip to content

Commit dea4860

Browse files
authored
added new marker (#16106)
1 parent 5841587 commit dea4860

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

src/sentry/static/sentry/app/views/eventsV2/data.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import ProjectBadge from 'app/components/idBadge/projectBadge';
1010
import UserBadge from 'app/components/idBadge/userBadge';
1111
import getDynamicText from 'app/utils/getDynamicText';
1212
import overflowEllipsis from 'app/styles/overflowEllipsis';
13-
import pinIcon from 'app/../images/location-pin.png';
13+
import pinIcon from 'app/../images/icons/icon-location-filled.svg';
1414
import {Organization, NewQuery} from 'app/types';
1515
import Duration from 'app/components/duration';
1616
import floatFormat from 'app/utils/floatFormat';

src/sentry/static/sentry/app/views/eventsV2/eventDetails/lineGraph.tsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,12 @@ const getCurrentEventMarker = (currentEvent: Event) => {
4141
data: [],
4242
markLine: MarkLine({
4343
symbol: [PIN_ICON, 'none'],
44-
symbolSize: [15, 30],
44+
symbolSize: [16, 150],
4545
lineStyle: {
4646
normal: {
47-
color: theme.red,
48-
type: 'dotted',
47+
color: theme.redLight,
48+
type: 'solid',
49+
width: 1,
4950
},
5051
},
5152
tooltip: {
@@ -246,6 +247,9 @@ const StyledPanel = styled(Panel)`
246247
.echarts-for-react div:first-child {
247248
width: 100% !important;
248249
}
250+
image {
251+
y: 0;
252+
}
249253
`;
250254

251255
LineGraph.propTypes = {
Loading
-1.37 KB
Binary file not shown.

0 commit comments

Comments
 (0)