Skip to content

Commit 57dbdf8

Browse files
Revert "chore(stacktrace): Make source map tooltip aligned (#82016)"
This reverts commit 29fcc33. Co-authored-by: scttcper <1400464+scttcper@users.noreply.github.com>
1 parent 6a8d26a commit 57dbdf8

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

static/app/components/events/interfaces/frame/deprecatedLine.tsx

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -364,13 +364,15 @@ export class DeprecatedLine extends Component<Props, State> {
364364
{this.isExpandable() ? <InteractionStateLayer /> : null}
365365
<DefaultLineTitleWrapper isInAppFrame={data.inApp}>
366366
<LeftLineTitle>
367-
{this.renderLeadHint()}
368-
<DefaultTitle
369-
frame={data}
370-
platform={this.props.platform ?? 'other'}
371-
isHoverPreviewed={isHoverPreviewed}
372-
meta={this.props.frameMeta}
373-
/>
367+
<div>
368+
{this.renderLeadHint()}
369+
<DefaultTitle
370+
frame={data}
371+
platform={this.props.platform ?? 'other'}
372+
isHoverPreviewed={isHoverPreviewed}
373+
meta={this.props.frameMeta}
374+
/>
375+
</div>
374376
</LeftLineTitle>
375377
</DefaultLineTitleWrapper>
376378
<DefaultLineTagWrapper>
@@ -506,7 +508,6 @@ const DefaultLineTitleWrapper = styled('div')<{isInAppFrame: boolean}>`
506508
const LeftLineTitle = styled('div')`
507509
display: flex;
508510
align-items: center;
509-
gap: ${space(0.25)};
510511
`;
511512

512513
const RepeatedContent = styled(LeftLineTitle)`

0 commit comments

Comments
 (0)