Closed as not planned
Description
Is there an existing issue for this?
- I have checked for existing issues https://github.com/getsentry/sentry-javascript/issues
- I have reviewed the documentation https://docs.sentry.io/
- I am using the latest SDK release https://github.com/getsentry/sentry-javascript/releases
How do you use Sentry?
Sentry Saas (sentry.io)
Which package are you using?
@sentry/angular
SDK Version
7.31.1
Framework Version
@sentry/angular
Link to Sentry event
SDK Setup
Sentry.init({
environment: environment.sentryEnvironment,
release: environment.sentryRelease,
dsn: environment.sentryDSN,
// This sets the sample rate to be 10%. You may want this to be 100% while
// in development and sample at a lower rate in production (Will record full session)
replaysSessionSampleRate: 0.1,
// If the entire session is not sampled, use the below sample rate to sample
// sessions when an error occurs. (Will record up to a minute prior to the error
// and then keep recording until session ends)
replaysOnErrorSampleRate: 1.0,
integrations: [
new BrowserTracing({
tracePropagationTargets: [environment.apiEndpoint],
routingInstrumentation: Sentry.routingInstrumentation
}),
new Sentry.Replay({
blockAllMedia: false,
maskAllInputs: false,
maskAllText: false,
blockClass: 'password',
maskInputOptions: {
password: true
}
})
],
// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
// We recommend adjusting this value in production
tracesSampleRate: environment.sentryTracesSampleRate
});
Steps to Reproduce
In Sentry Replay produced video the SVG icons we use are not showing in the video.
If it helps we make use of "ng-svg-icon-sprite” package to display our SVG's
Expected Result
We would expect that after having set property blockAllMedia:
to false, we would be able to see the icons as they are a type of media