Skip to content

Commit 2ecd0e2

Browse files
ryan953andrewshie-sentry
authored andcommitted
fix(replay): Fix overflow on replay snippets inside issues views (#102542)
| | Issue Details | | --- | --- | | Before | <img width="676" height="124" alt="Screenshot 2025-11-03 at 10 59 15 AM" src="https://github.com/user-attachments/assets/7c7e8d82-9d82-48ef-826e-95230ef60341" /> | | After | <img width="713" height="124" alt="Screenshot 2025-11-03 at 10 59 07 AM" src="https://github.com/user-attachments/assets/ed8cf0a4-1349-40da-b094-8bbbe87dfb20" /> | | Issues > Replays | | --- | --- | | Before | <img width="661" height="107" alt="Screenshot 2025-11-03 at 10 58 35 AM" src="https://github.com/user-attachments/assets/0d2179ea-9295-4c9d-9131-e56e3effc423" /> | | After | <img width="661" height="107" alt="Screenshot 2025-11-03 at 10 58 47 AM" src="https://github.com/user-attachments/assets/3a70cb6b-00bf-4efb-ba23-a7fcb191e38f" /> |
1 parent a22d4c1 commit 2ecd0e2

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

static/app/components/events/eventReplay/replayClipPreviewPlayer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ const PlayerContainer = styled(FluidHeight)`
8787
@media (min-width: ${p => p.theme.breakpoints.sm}) {
8888
min-height: ${REPLAY_LOADING_HEIGHT + 16}px;
8989
}
90+
overflow: unset;
9091
`;
9192

9293
const StyledNegativeSpaceContainer = styled(NegativeSpaceContainer)`

static/app/components/events/eventReplay/replayPreviewPlayer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,6 @@ const PlayerPanel = styled('div')`
196196
gap: ${space(1)};
197197
flex-direction: column;
198198
flex-grow: 1;
199-
overflow: hidden;
200199
height: 100%;
201200
`;
202201

@@ -208,6 +207,7 @@ const PreviewPlayerContainer = styled(FluidHeight)<{isSidebarOpen: boolean}>`
208207
gap: ${space(2)};
209208
background: ${p => p.theme.background};
210209
height: unset;
210+
overflow: unset;
211211
212212
:fullscreen {
213213
padding: ${space(1)};

static/app/views/issueDetails/groupReplays/groupReplaysPlayer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ const PlayerContainer = styled(FluidHeight)`
9090
@media (min-width: ${p => p.theme.breakpoints.sm}) {
9191
min-height: ${REPLAY_LOADING_HEIGHT_LARGE}px;
9292
}
93+
overflow: unset;
9394
`;
9495

9596
const StyledNegativeSpaceContainer = styled(NegativeSpaceContainer)`

0 commit comments

Comments
 (0)