Skip to content

Commit

Permalink
Fixed an issue where option key was not registering in PSQL tool. #6968
Browse files Browse the repository at this point in the history
  • Loading branch information
anilsahoo20 authored Dec 19, 2024
1 parent e011ad0 commit 91881ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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});
});
}

Expand Down

0 comments on commit 91881ad

Please sign in to comment.