We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b45b885 commit ab867d4Copy full SHA for ab867d4
packages/replay-internal/src/integration.ts
@@ -32,6 +32,8 @@ const MEDIA_SELECTORS =
32
33
const DEFAULT_NETWORK_HEADERS = ['content-length', 'content-type', 'accept'];
34
35
+const DEFAULT_SLOW_CLICK_IGNORE_SELECTORS = ['input[type="file"]'];
36
+
37
let _initialized = false;
38
39
/**
@@ -102,7 +104,7 @@ export class Replay implements Integration {
102
104
mutationLimit = 10_000,
103
105
106
slowClickTimeout = 7_000,
- slowClickIgnoreSelectors = [],
107
+ slowClickIgnoreSelectors = DEFAULT_SLOW_CLICK_IGNORE_SELECTORS,
108
109
networkDetailAllowUrls = [],
110
networkDetailDenyUrls = [],
0 commit comments