Skip to content

Commit a2ea57f

Browse files
Fixed an issue where 'View/Edit Data' shortcut opened 'First 100 rows' instead of 'All Rows'. #9235
1 parent 5dd07d5 commit a2ea57f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

docs/en_US/release_notes_9_12.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Bug fixes
3030
*********
3131

3232
| `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.
33+
| `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".
3334
| `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.
3435
3536

web/pgadmin/browser/static/js/keyboard.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,8 @@ _.extend(pgBrowser.keyboardNavigation, {
224224
return;
225225

226226
// Call data grid method to render view data
227-
pgAdmin.Tools.SQLEditor.showViewData({'mnuid': 1}, tree.i);
227+
// 1, 2 are used for limit
228+
pgAdmin.Tools.SQLEditor.showViewData({'mnuid': 3}, tree.i);
228229
},
229230
bindSubMenuSearchObjects: function() {
230231
const tree = this.getTreeDetails();

0 commit comments

Comments
 (0)