mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where the copy shortcut CTRL +C was not working in the Query Tool data grid. #7920
This commit is contained in:
parent
9b64acb3d2
commit
0e63914ab3
@ -130,7 +130,7 @@ function SelectAllHeaderRenderer({isCellSelected}) {
|
||||
}, [isCellSelected]);
|
||||
|
||||
return <div ref={cellRef} style={{width: '100%', height: '100%'}} onClick={onClick}
|
||||
tabIndex="-1" onKeyDown={getCopyShortcutHandler(dataGridExtras.handleCopy)}></div>;
|
||||
tabIndex="0" onKeyDown={getCopyShortcutHandler(dataGridExtras.handleCopy)}></div>;
|
||||
}
|
||||
SelectAllHeaderRenderer.propTypes = {
|
||||
onAllRowsSelectionChange: PropTypes.func,
|
||||
|
Loading…
Reference in New Issue
Block a user