Skip to content

Commit 13b152a

Browse files
committed
docs
1 parent 00b905d commit 13b152a

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

src/sentry/static/sentry/app/views/organizationEventsV2/transactionView/dividerHandlerManager.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ const DividerManagerContext = React.createContext<DividerHandlerManagerChildrenP
4848

4949
type PropType = {
5050
children: React.ReactNode;
51+
52+
// this is the DOM element where the drag events occur. it's also the reference point
53+
// for calculating the relative mouse x coordinate.
5154
interactiveLayerRef: React.RefObject<HTMLDivElement>;
5255
};
5356

src/sentry/static/sentry/app/views/organizationEventsV2/transactionView/dragManager.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ type DragManagerProps = {
3030
children: (props: DragManagerChildrenProps) => JSX.Element;
3131

3232
// this is the DOM element where the drag events occur. it's also the reference point
33-
// for the mouse x coordinate
33+
// for calculating the relative mouse x coordinate.
3434
interactiveLayerRef: React.RefObject<HTMLDivElement>;
3535
};
3636

0 commit comments

Comments
 (0)