From 0ccfa7900cd5cc56606b08a10aef6a07408b296b Mon Sep 17 00:00:00 2001 From: Akshay Joshi Date: Thu, 20 Apr 2023 18:01:20 +0530 Subject: [PATCH] The search object, query tool, and psql tool menu should not be displayed for pgAgent. #6077 --- docs/en_US/release_notes_7_1.rst | 2 ++ web/pgadmin/browser/templates/browser/js/utils.js | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/en_US/release_notes_7_1.rst b/docs/en_US/release_notes_7_1.rst index 7271b1a3b..62d9228f1 100644 --- a/docs/en_US/release_notes_7_1.rst +++ b/docs/en_US/release_notes_7_1.rst @@ -33,7 +33,9 @@ Bug fixes | `Issue #5777 `_ - Fixed an issue where the browser tree state is not remembered when reopening pgAdmin. | `Issue #5820 `_ - Fixed an issue where collation was set to none if we remove it while creating partitioned table. + | `Issue #6059 `_ - Show proper message if the debugger is stopped by the user. | `Issue #6075 `_ - Ensure that the save button is enabled when registering a new server fails due to an API error. + | `Issue #6077 `_ - The search object, query tool, and psql tool menu should not be displayed for pgAgent. | `Issue #6120 `_ - Fixed error occurring while logging out from pgAdmin keeping a query tool opened. | `Issue #6128 `_ - Fix a SQL error occurring on roles dependents SQL. | `Issue #6130 `_ - Ensure to quote the primary key value if needed while deleting rows from the table. diff --git a/web/pgadmin/browser/templates/browser/js/utils.js b/web/pgadmin/browser/templates/browser/js/utils.js index 676292b24..23321c443 100644 --- a/web/pgadmin/browser/templates/browser/js/utils.js +++ b/web/pgadmin/browser/templates/browser/js/utils.js @@ -78,7 +78,8 @@ define('pgadmin.browser.utils', let unsupported_nodes = pgAdmin.unsupported_nodes = [ 'server_group', 'server', 'coll-tablespace', 'tablespace', 'coll-role', 'role', 'coll-resource_group', 'resource_group', - 'coll-database' + 'coll-database', 'coll-pga_job', 'coll-pga_schedule', 'coll-pga_jobstep', + 'pga_job', 'pga_schedule', 'pga_jobstep' ]; pgBrowser.utils = {