[Console] Fix tooltip positioning (#189493)

This commit is contained in:
Ignacio Rivas 2024-07-31 17:06:43 +02:00 committed by GitHub
parent c73bbc99c4
commit f78b262faf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -177,6 +177,9 @@ export const MonacoEditor = ({ initialTextValue }: EditorProps) => {
fontSize: settings.fontSize,
wordWrap: settings.wrapMode === true ? 'on' : 'off',
theme: CONSOLE_THEME_ID,
// Make the quick-fix window be fixed to the window rather than clipped by
// the parent content set with overflow: hidden/auto
fixedOverflowWidgets: true,
}}
suggestionProvider={suggestionProvider}
enableFindAction={true}