Fixed an issue where 'View/Edit Data' shortcut opened 'First 100 rows' instead of 'All Rows'. #9235
parent
5dd07d5d4b
commit
a2ea57fc2e
|
|
@ -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.
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in New Issue