diff --git a/docs/en_US/release_notes_6_20.rst b/docs/en_US/release_notes_6_20.rst index 541640420..d8464a7af 100644 --- a/docs/en_US/release_notes_6_20.rst +++ b/docs/en_US/release_notes_6_20.rst @@ -28,6 +28,7 @@ Housekeeping | `Issue #4320 `_ - Added bundled PG utilities in the release note. | `Issue #5525 `_ - Upgrade Flask-Migrate to 4.x. | `Issue #5723 `_ - Improve performance by removing signal-based zoom-in, zoom-out, etc functionality from the runtime environment. + | `Issue #5794 `_ - Use uplot for Dashboard graphs to reduce CPU usage. Bug fixes ********* @@ -41,5 +42,7 @@ Bug fixes | `Issue #5746 `_ - Increase the length of the value column of the setting table. | `Issue #5748 `_ - Fixed console error while attaching the partition. | `Issue #5751 `_ - Fix failing import servers CLI due to vulnerability fix. + | `Issue #5761 `_ - Fix an issue where drag and drop object names is not working. + | `Issue #5763 `_ - Ensure that keyboard hotkey to open query tool and search object should work properly. | `Issue #5781 `_ - Fixed an issue where Query history is not getting loaded with external database. | `Issue #5796 `_ - Ensure nested menu items are shown in quick search result. diff --git a/web/pgadmin/browser/static/js/keyboard.js b/web/pgadmin/browser/static/js/keyboard.js index 1bf77536d..4d2f9eda9 100644 --- a/web/pgadmin/browser/static/js/keyboard.js +++ b/web/pgadmin/browser/static/js/keyboard.js @@ -288,8 +288,8 @@ _.extend(pgBrowser.keyboardNavigation, { if (!tree.d) return; - // Call data grid method to render view data - pgAdmin.SearchObjects.show_search_objects('', tree.i); + // Call show search object to open the search object dialog. + pgAdmin.Tools.SearchObjects.show_search_objects('', tree.i); }, bindSubMenuProperties: function() { const tree = this.getTreeDetails();