Skip to content

Commit

Permalink
popup fix when enter key pressed
Browse files Browse the repository at this point in the history
  • Loading branch information
smariel committed Sep 15, 2024
1 parent 23c3129 commit cfd86f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/renderer.popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ $(async () => {
// ENTER
else if (13 == event.which) {
if(undefined !== popupData.type && 'list' === popupData.type) {
close($('#list option:selected').text());
close($('#list option:selected').val());
}
else {
close (true);
Expand Down

0 comments on commit cfd86f7

Please sign in to comment.