diff --git a/docs/en_US/release_notes_6_10.rst b/docs/en_US/release_notes_6_10.rst index 9a0a2f55f..27fd493e8 100644 --- a/docs/en_US/release_notes_6_10.rst +++ b/docs/en_US/release_notes_6_10.rst @@ -20,3 +20,4 @@ Bug fixes | `Issue #7372 `_ - Tell Docker to always pull the latest base images when building containers. | `Issue #7383 `_ - Fixed an issue where Preferences are not saved when the dialog is maximized. + | `Issue #7388 `_ - Fixed an issue where an error message fills the entire window if the query is long. diff --git a/web/pgadmin/tools/sqleditor/static/js/components/QueryToolComponent.jsx b/web/pgadmin/tools/sqleditor/static/js/components/QueryToolComponent.jsx index b6204724c..7969087ae 100644 --- a/web/pgadmin/tools/sqleditor/static/js/components/QueryToolComponent.jsx +++ b/web/pgadmin/tools/sqleditor/static/js/components/QueryToolComponent.jsx @@ -378,7 +378,6 @@ export default function QueryToolComponent({params, pgWindow, pgAdmin, selectedN let msg = parseApiError(error); eventBus.current.fireEvent(QUERY_TOOL_EVENTS.SET_MESSAGE, msg, true); eventBus.current.fireEvent(QUERY_TOOL_EVENTS.FOCUS_PANEL, PANELS.MESSAGES); - Notifier.error(msg); } };