diff --git a/docs/en_US/release_notes_9_12.rst b/docs/en_US/release_notes_9_12.rst index 8836a4d65..238abed5a 100644 --- a/docs/en_US/release_notes_9_12.rst +++ b/docs/en_US/release_notes_9_12.rst @@ -30,6 +30,7 @@ Bug fixes ********* | `Issue #9196 `_ - Fixed an issue where double click to open a file in the file manager is not working. + | `Issue #9235 `_ - Fixed an issue where "View/Edit Data" shortcut opened "First 100 rows" instead of "All Rows". | `Issue #9380 `_ - Fixed an issue where the Query History panel would auto-scroll to the top and did not preserve the scroll bar position for the selected entry. diff --git a/web/pgadmin/browser/static/js/keyboard.js b/web/pgadmin/browser/static/js/keyboard.js index 5e6e49c14..43f600ce7 100644 --- a/web/pgadmin/browser/static/js/keyboard.js +++ b/web/pgadmin/browser/static/js/keyboard.js @@ -224,7 +224,8 @@ _.extend(pgBrowser.keyboardNavigation, { return; // Call data grid method to render view data - pgAdmin.Tools.SQLEditor.showViewData({'mnuid': 1}, tree.i); + // 1, 2 are used for limit + pgAdmin.Tools.SQLEditor.showViewData({'mnuid': 3}, tree.i); }, bindSubMenuSearchObjects: function() { const tree = this.getTreeDetails();