Fixed an issue where 'View/Edit Data' shortcut opened 'First 100 rows' instead of 'All Rows'. #9235

pull/9460/head
Aditya Toshniwal 2025-12-15 13:47:54 +05:30
parent 5dd07d5d4b
commit a2ea57fc2e
2 changed files with 3 additions and 1 deletions

View File

@ -30,6 +30,7 @@ Bug fixes
*********
| `Issue #9196 <https://github.com/pgadmin-org/pgadmin4/issues/9196>`_ - Fixed an issue where double click to open a file in the file manager is not working.
| `Issue #9235 <https://github.com/pgadmin-org/pgadmin4/issues/9235>`_ - Fixed an issue where "View/Edit Data" shortcut opened "First 100 rows" instead of "All Rows".
| `Issue #9380 <https://github.com/pgadmin-org/pgadmin4/issues/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.

View File

@ -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();