Fixed an issue where pop-up notifications from Object Explorer wouldn't get dismissed automatically if the Query Tool was opened. #6571
parent
721a5da895
commit
dbdea181a9
|
@ -80,6 +80,9 @@ export default function cmOverride(theme) {
|
|||
'& .cm-foldGutter': {
|
||||
padding: '0px',
|
||||
color: editor.fg,
|
||||
'& .cm-gutterElement': {
|
||||
width: '18px',
|
||||
}
|
||||
},
|
||||
|
||||
'& .cm-breakpoint-gutter': {
|
||||
|
|
|
@ -50,8 +50,8 @@ import activeLineExtn from '../extensions/activeLineMarker';
|
|||
import currentQueryHighlighterExtn from '../extensions/currentQueryHighlighter';
|
||||
import { autoCompleteCompartment, indentNewLine } from '../extensions/extraStates';
|
||||
|
||||
const arrowRightHtml = ReactDOMServer.renderToString(<KeyboardArrowRightRoundedIcon style={{fontSize: '1.2em'}} />);
|
||||
const arrowDownHtml = ReactDOMServer.renderToString(<ExpandMoreRoundedIcon style={{fontSize: '1.2em'}} />);
|
||||
const arrowRightHtml = ReactDOMServer.renderToString(<KeyboardArrowRightRoundedIcon style={{width: '16px'}} />);
|
||||
const arrowDownHtml = ReactDOMServer.renderToString(<ExpandMoreRoundedIcon style={{width: '16px'}} />);
|
||||
|
||||
function handleDrop(e, editor) {
|
||||
let dropDetails = null;
|
||||
|
|
|
@ -207,6 +207,7 @@ export function NotifierProvider({ pgAdmin, pgWindow, getInstance, children, onR
|
|||
getInstance?.(pgAdmin.Browser.notifier);
|
||||
onReady?.();
|
||||
}}
|
||||
disableWindowBlurListener={true}
|
||||
>
|
||||
{children}
|
||||
</SnackbarProvider>
|
||||
|
|
Loading…
Reference in New Issue