Fix an issue where global/native keyboard shortcuts are not working when any cell of data output grid has focus. #6579 (#6834)

pull/6837/head
Anil Sahoo 2023-10-06 13:28:16 +05:30 committed by GitHub
parent 7ce07f7dcf
commit 5113fda7a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

@ -253,8 +253,11 @@ function initialiseColumns(columns, rows, totalRowCount, columnWidthBy) {
col.editorOptions = {
commitOnOutsideClick: false,
onCellKeyDown: (e)=>{
/* Do not open the editor */
e.preventDefault();
// global keyboard shortcuts will work now and will open the the editor for the cell once pgAdmin reopens
if(!e.metaKey && !e.altKey && !e.shiftKey && !e.ctrlKey){
/* Do not open the editor */
e.preventDefault();
}
}
};
setEditorFormatter(col);