mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-12-22 15:13:42 -06:00
Fixed an issue where option key was not registering in PSQL tool. #6968
This commit is contained in:
parent
e011ad02a5
commit
91881ad6d3
@ -111,7 +111,7 @@ function psql_terminal_io(term, socket, platform, pgAdmin) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
term.onKey(function (ev) {
|
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});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user