Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9a13cef
feat(apm): Transaction view v1
dashed Aug 7, 2019
cd41eda
display transaction view only to transaction events
dashed Aug 7, 2019
c9fe032
intersection-observer polyfill
dashed Aug 5, 2019
221ff82
add setBodyUserSelect utility function
dashed Aug 5, 2019
8eab4c4
refactor dragManager.tsx to use setBodyUserSelect
dashed Aug 5, 2019
3443077
fix: dragManager.tsx -- don't setState twice
dashed Aug 5, 2019
cfd45a4
move warning text somewhere else
dashed Aug 6, 2019
dfcbce2
various bug fixes
dashed Aug 6, 2019
3049916
round corners for ants
dashed Aug 6, 2019
57724b2
lint fixes
dashed Aug 6, 2019
732b2ad
refactor spanBar from spanGroup
dashed Aug 6, 2019
d640c97
clean up
dashed Aug 6, 2019
dcfa94e
remove fragment
dashed Aug 7, 2019
007b61e
address browser zoom levels
dashed Aug 7, 2019
a01de3c
prefer refs over data-test-ids
dashed Aug 7, 2019
bc81d90
min-width on span bars
dashed Aug 7, 2019
dc36cc1
VIEW_HANDLE_HEIGHT magic constant
dashed Aug 7, 2019
52488b4
bug fix
dashed Aug 7, 2019
ccd44ab
Update src/sentry/static/sentry/app/views/organizationEventsV2/transa…
dashed Aug 7, 2019
e1920f0
properly clean up listeners on unmount
dashed Aug 7, 2019
4177115
docs
dashed Aug 7, 2019
2ca001c
docs
dashed Aug 7, 2019
14febef
docs
dashed Aug 7, 2019
084c283
🚲
dashed Aug 7, 2019
3dc68fd
performance.
dashed Aug 7, 2019
43a32a9
change name from displayDetail to showDetail
dashed Aug 7, 2019
c5a7038
modern browsers only
dashed Aug 7, 2019
f11d77d
un-used id
dashed Aug 7, 2019
530ddd1
collate z-index
dashed Aug 7, 2019
46bfdb6
docs
dashed Aug 7, 2019
7704cca
lint fix
dashed Aug 7, 2019
f50bd3a
derive information from spans
dashed Aug 7, 2019
42c58bc
rename lookup to childSpans
dashed Aug 7, 2019
9b724ba
refactor
dashed Aug 7, 2019
1bd38e2
use spanNumber to pick span colours
dashed Aug 7, 2019
d3b87d2
adjust traceViewRef
dashed Aug 7, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
"fuse.js": "^3.2.0",
"gettext-parser": "1.3.1",
"grid-emotion": "^2.1.0",
"intersection-observer": "^0.7.0",
"ios-device-list": "^1.1.30",
"jed": "^1.1.0",
"jquery": "2.2.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import SentryTypes from 'app/sentryTypes';
import StacktraceInterface from 'app/components/events/interfaces/stacktrace';
import TemplateInterface from 'app/components/events/interfaces/template';
import ThreadsInterface from 'app/components/events/interfaces/threads';
import SpansInterface from 'app/components/events/interfaces/spans';
import withApi from 'app/utils/withApi';
import withOrganization from 'app/utils/withOrganization';

Expand All @@ -49,7 +48,6 @@ export const INTERFACES = {
breadcrumbs: BreadcrumbsInterface,
threads: ThreadsInterface,
debugmeta: DebugMetaInterface,
spans: SpansInterface,
};

class EventEntries extends React.Component {
Expand Down
Loading