-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed as not planned
Closed as not planned
Copy link
Labels
BugMeta: Help WantedPackage: replayIssues related to the Sentry Replay SDKIssues related to the Sentry Replay SDK
Description
See also https://github.com/getsentry/team-replay/issues/382
I noticed that on my demo site i had a css class defined as:
.layout {
display: grid;
grid-template-areas:
'img'
'title'
'desc';
grid-template-rows: max-content;
grid-template-columns: 1fr;
}
but when playing it back inside the replay (example replay) the css was instead:
.Media_layout__lkQuJ { display: grid; grid-template: "img" max-content / 1fr; }
^ this is the serialized css coming from the server.
Notice how the only grid-area defined is img. The other areas are automatically created, but not named, based on the definition max-content / 1fr which creates a 2 column, N row grid that gets filled in with children left-to-right, top-to-bottom.
The result is that the playback shows a different layout than what the user saw, things looking really broken inside the replay.
vctormb and ant1m4tt3r
Metadata
Metadata
Assignees
Labels
BugMeta: Help WantedPackage: replayIssues related to the Sentry Replay SDKIssues related to the Sentry Replay SDK
Projects
Status
No status