Handle mixed-cased filter terms in keyboard shortcut dialog

Fixes #3400
This commit is contained in:
Nick O'Leary
2022-02-14 20:59:43 +00:00
parent 264047dc0c
commit f2dde705ef

View File

@@ -625,7 +625,7 @@ RED.keyboard = (function() {
pane.find("#red-ui-settings-tab-keyboard-filter").searchBox({
delay: 100,
change: function() {
var filterValue = $(this).val().trim();
var filterValue = $(this).val().trim().toLowerCase();
if (filterValue === "") {
shortcutList.editableList('filter', null);
} else {