Skip to content

Commit

Permalink
Merge pull request #6198 from effective-webwork/filter-submit
Browse files Browse the repository at this point in the history
Submit filters with numpad enter
  • Loading branch information
solth authored Sep 2, 2024
2 parents c7af10b + 810ff77 commit a342256
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Kitodo/src/main/webapp/WEB-INF/resources/js/filter.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ function handleKeydown(event) {
}
break;
case "Enter":
case "NumpadEnter":
if ($(FILTER_OPTIONS_FORM_WRAPPER).is(':visible') && $(SELECTED_SUGGESTION_ITEM).length === 1) {
selectConfirm();
} else {
Expand Down

0 comments on commit a342256

Please sign in to comment.