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 e75b85d commit 6041467Copy full SHA for 6041467
static/app/components/core/compactSelect/control.tsx
@@ -298,7 +298,10 @@ export function Control({
298
preventOverflowOptions: {
299
...preventOverflowOptions,
300
boundary:
301
- preventOverflowOptions?.boundary ?? document.querySelector('main') ?? undefined,
+ preventOverflowOptions?.boundary ??
302
+ document.querySelector('main') ??
303
+ document.getElementById('main') ??
304
+ undefined,
305
},
306
flipOptions,
307
strategy,
0 commit comments