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': {
|
'& .cm-foldGutter': {
|
||||||
padding: '0px',
|
padding: '0px',
|
||||||
color: editor.fg,
|
color: editor.fg,
|
||||||
|
'& .cm-gutterElement': {
|
||||||
|
width: '18px',
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
'& .cm-breakpoint-gutter': {
|
'& .cm-breakpoint-gutter': {
|
||||||
|
|
|
@ -50,8 +50,8 @@ import activeLineExtn from '../extensions/activeLineMarker';
|
||||||
import currentQueryHighlighterExtn from '../extensions/currentQueryHighlighter';
|
import currentQueryHighlighterExtn from '../extensions/currentQueryHighlighter';
|
||||||
import { autoCompleteCompartment, indentNewLine } from '../extensions/extraStates';
|
import { autoCompleteCompartment, indentNewLine } from '../extensions/extraStates';
|
||||||
|
|
||||||
const arrowRightHtml = ReactDOMServer.renderToString(<KeyboardArrowRightRoundedIcon style={{fontSize: '1.2em'}} />);
|
const arrowRightHtml = ReactDOMServer.renderToString(<KeyboardArrowRightRoundedIcon style={{width: '16px'}} />);
|
||||||
const arrowDownHtml = ReactDOMServer.renderToString(<ExpandMoreRoundedIcon style={{fontSize: '1.2em'}} />);
|
const arrowDownHtml = ReactDOMServer.renderToString(<ExpandMoreRoundedIcon style={{width: '16px'}} />);
|
||||||
|
|
||||||
function handleDrop(e, editor) {
|
function handleDrop(e, editor) {
|
||||||
let dropDetails = null;
|
let dropDetails = null;
|
||||||
|
|
|
@ -207,6 +207,7 @@ export function NotifierProvider({ pgAdmin, pgWindow, getInstance, children, onR
|
||||||
getInstance?.(pgAdmin.Browser.notifier);
|
getInstance?.(pgAdmin.Browser.notifier);
|
||||||
onReady?.();
|
onReady?.();
|
||||||
}}
|
}}
|
||||||
|
disableWindowBlurListener={true}
|
||||||
>
|
>
|
||||||
{children}
|
{children}
|
||||||
</SnackbarProvider>
|
</SnackbarProvider>
|
||||||
|
|
Loading…
Reference in New Issue