From a2ea57fc2e635e8878e7b97e888b83a702643145 Mon Sep 17 00:00:00 2001 From: Aditya Toshniwal Date: Mon, 15 Dec 2025 13:47:54 +0530 Subject: [PATCH] Fixed an issue where 'View/Edit Data' shortcut opened 'First 100 rows' instead of 'All Rows'. #9235 --- docs/en_US/release_notes_9_12.rst | 1 + web/pgadmin/browser/static/js/keyboard.js | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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();