Skip to content

Commit f58e1e1

Browse files
author
Rohit Bhati
committed
Fix the issue where tooltips persist, blocking access to UI controls. #8255
1 parent 19c8fcd commit f58e1e1

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

web/pgadmin/static/js/Theme/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,7 @@ basicSettings = createTheme(basicSettings, {
289289
MuiTooltip: {
290290
defaultProps: {
291291
arrow: true,
292+
disableInteractive: true
292293
},
293294
styleOverrides: {
294295
popper: {

web/pgadmin/tools/sqleditor/static/js/components/sections/StatusBar.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export function StatusBar({eol, handleEndOfLineChange}) {
128128

129129
<Box className='StatusBar-padding StatusBar-mlAuto' style={{display:'flex'}}>
130130
<Box className="StatusBar-padding StatusBar-divider">
131-
<Tooltip title="Select EOL Sequence" disableInteractive enterDelay={2500}>
131+
<Tooltip title="Select EOL Sequence" enterDelay={2500}>
132132
<span
133133
onClick={toggleMenu}
134134
ref={eolMenuRef}

0 commit comments

Comments
 (0)