Fixed an issue where option key was not registering in PSQL tool. #6968

This commit is contained in:
Anil Sahoo 2024-12-19 15:40:23 +05:30 committed by GitHub
parent e011ad02a5
commit 91881ad6d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -111,7 +111,7 @@ function psql_terminal_io(term, socket, platform, pgAdmin) {
});
term.onKey(function (ev) {
socket.emit('socket_input', {'input': ev.key, 'key_name': ev.domEvent.code});
socket.emit('socket_input', {'input': ev.domEvent.key, 'key_name': ev.domEvent.code});
});
}