mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that keyboard hotkey to open query tool and search object should work properly. #5763
This commit is contained in:
@@ -28,6 +28,7 @@ Housekeeping
|
|||||||
| `Issue #4320 <https://github.com/pgadmin-org/pgadmin4/issues/4320>`_ - Added bundled PG utilities in the release note.
|
| `Issue #4320 <https://github.com/pgadmin-org/pgadmin4/issues/4320>`_ - Added bundled PG utilities in the release note.
|
||||||
| `Issue #5525 <https://github.com/pgadmin-org/pgadmin4/issues/5525>`_ - Upgrade Flask-Migrate to 4.x.
|
| `Issue #5525 <https://github.com/pgadmin-org/pgadmin4/issues/5525>`_ - Upgrade Flask-Migrate to 4.x.
|
||||||
| `Issue #5723 <https://github.com/pgadmin-org/pgadmin4/issues/5723>`_ - Improve performance by removing signal-based zoom-in, zoom-out, etc functionality from the runtime environment.
|
| `Issue #5723 <https://github.com/pgadmin-org/pgadmin4/issues/5723>`_ - Improve performance by removing signal-based zoom-in, zoom-out, etc functionality from the runtime environment.
|
||||||
|
| `Issue #5794 <https://github.com/pgadmin-org/pgadmin4/issues/5794>`_ - Use uplot for Dashboard graphs to reduce CPU usage.
|
||||||
|
|
||||||
Bug fixes
|
Bug fixes
|
||||||
*********
|
*********
|
||||||
@@ -41,5 +42,7 @@ Bug fixes
|
|||||||
| `Issue #5746 <https://github.com/pgadmin-org/pgadmin4/issues/5746>`_ - Increase the length of the value column of the setting table.
|
| `Issue #5746 <https://github.com/pgadmin-org/pgadmin4/issues/5746>`_ - Increase the length of the value column of the setting table.
|
||||||
| `Issue #5748 <https://github.com/pgadmin-org/pgadmin4/issues/5748>`_ - Fixed console error while attaching the partition.
|
| `Issue #5748 <https://github.com/pgadmin-org/pgadmin4/issues/5748>`_ - Fixed console error while attaching the partition.
|
||||||
| `Issue #5751 <https://github.com/pgadmin-org/pgadmin4/issues/5751>`_ - Fix failing import servers CLI due to vulnerability fix.
|
| `Issue #5751 <https://github.com/pgadmin-org/pgadmin4/issues/5751>`_ - Fix failing import servers CLI due to vulnerability fix.
|
||||||
|
| `Issue #5761 <https://github.com/pgadmin-org/pgadmin4/issues/5761>`_ - Fix an issue where drag and drop object names is not working.
|
||||||
|
| `Issue #5763 <https://github.com/pgadmin-org/pgadmin4/issues/5763>`_ - Ensure that keyboard hotkey to open query tool and search object should work properly.
|
||||||
| `Issue #5781 <https://github.com/pgadmin-org/pgadmin4/issues/5781>`_ - Fixed an issue where Query history is not getting loaded with external database.
|
| `Issue #5781 <https://github.com/pgadmin-org/pgadmin4/issues/5781>`_ - Fixed an issue where Query history is not getting loaded with external database.
|
||||||
| `Issue #5796 <https://github.com/pgadmin-org/pgadmin4/issues/5796>`_ - Ensure nested menu items are shown in quick search result.
|
| `Issue #5796 <https://github.com/pgadmin-org/pgadmin4/issues/5796>`_ - Ensure nested menu items are shown in quick search result.
|
||||||
|
|||||||
@@ -288,8 +288,8 @@ _.extend(pgBrowser.keyboardNavigation, {
|
|||||||
if (!tree.d)
|
if (!tree.d)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Call data grid method to render view data
|
// Call show search object to open the search object dialog.
|
||||||
pgAdmin.SearchObjects.show_search_objects('', tree.i);
|
pgAdmin.Tools.SearchObjects.show_search_objects('', tree.i);
|
||||||
},
|
},
|
||||||
bindSubMenuProperties: function() {
|
bindSubMenuProperties: function() {
|
||||||
const tree = this.getTreeDetails();
|
const tree = this.getTreeDetails();
|
||||||
|
|||||||
Reference in New Issue
Block a user