Skip to content

Commit f23fe38

Browse files
Update release notes.
1 parent 3213664 commit f23fe38

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

docs/en_US/release_notes_8_14.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,6 @@ Housekeeping
3030
Bug fixes
3131
*********
3232
| `Issue #5099 <https://github.com/pgadmin-org/pgadmin4/issues/5099>`_ - Fixed an issue where Ctrl/Cmd + A was not selecting all data in query tool data grid.
33+
| `Issue #8010 <https://github.com/pgadmin-org/pgadmin4/issues/5099>`_ - Fixed an issue where query tool should show results and messages only from the last executed query.
34+
| `Issue #8127 <https://github.com/pgadmin-org/pgadmin4/issues/8127>`_ - Fixed an issue where query tool should not prompt for unsaved changes when there are no changes.
3335

web/pgadmin/tools/sqleditor/static/js/components/QueryToolDataGrid/index.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -401,9 +401,8 @@ export default function QueryToolDataGrid({columns, rows, totalRowCount, dataCha
401401
}
402402

403403
// Handle Select All Cmd + A(mac) / Ctrl + a (others)
404-
if((isMac() && e.metaKey) || (!isMac() && e.ctrlKey) && e.key === 'a') {
404+
if(((isMac() && e.metaKey) || (!isMac() && e.ctrlKey)) && e.key === 'a') {
405405
e.preventDefault();
406-
onSelectedColumnsChangeWrapped(new Set());
407406
eventBus.fireEvent(QUERY_TOOL_EVENTS.TRIGGER_SELECT_ALL);
408407
}
409408
}

web/pgadmin/tools/sqleditor/static/js/components/sections/ResultSet.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1038,6 +1038,7 @@ export function ResultSet() {
10381038
} else {
10391039
setAllRowsSelect('NONE');
10401040
}
1041+
setSelectedColumns(new Set());
10411042
});
10421043

10431044
eventBus.registerListener(QUERY_TOOL_EVENTS.ALL_ROWS_SELECTED, ()=>{

0 commit comments

Comments
 (0)