File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -56,22 +56,23 @@ export class Replay implements Integration {
5656 blockClass = 'sentry-block' ,
5757 ignoreClass = 'sentry-ignore' ,
5858 maskTextClass = 'sentry-mask' ,
59- maskInputSelector = '.sentry-mask' ,
60- unmaskInputSelector = '.sentry-unmask' ,
6159 unmaskTextSelector = '.sentry-unmask' ,
6260 blockSelector = '[data-sentry-block]' ,
6361 ..._recordingOptions
6462 } : ReplayConfiguration = { } ) {
6563 this . _recordingOptions = {
6664 maskAllInputs,
6765 blockClass,
66+ blockSelector,
6867 ignoreClass,
6968 maskTextClass,
7069 maskTextSelector,
7170 unmaskTextSelector,
72- unmaskInputSelector,
73- maskInputSelector,
74- blockSelector,
71+
72+ // We are making the decision to make these selectors the same
73+ unmaskInputSelector : unmaskTextSelector ,
74+ maskInputSelector : maskTextSelector ,
75+
7576 ..._recordingOptions ,
7677 } ;
7778
You can’t perform that action at this time.
0 commit comments