Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(replay): Add Troubleshooting item for "clicks in wrong places" #12782

Merged
merged 4 commits into from
Mar 4, 2025
Merged
Changes from 1 commit
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,10 @@ There are certain cases (such as clicking a button to play an audio clip) where
If you want to turn off [rage click issues](/product/issues/issue-details/replay-issues/) altogether, you can disable them by going to the **Settings** page in Sentry, clicking "Projects", and selecting the project for which you want to disable rage clicks. From here, select "Replays" under the "PROCESSING" heading and toggle off "Create Rage Click Issues".

</Expandable>

<Expandable title="Clicks appear in the wrong location" permalink>

Clicks in replays can appear in the incorrect location due to rendering differences between your application and the replayer. A common case of this is with text rendering: custom fonts are not supported in the replayer and can cause the height of elements to differ between production and the replay. This means that the scroll position being incorrect and results in mouse clicks appearing to click the wrong location. Text masking of variable-width fonts can also cause this.

Unfortunately, there is currently no workaround. Please [follow this GitHub Issue](https://github.com/getsentry/sentry-javascript/issues/15449) for updates.
</Expandable>