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
No known key found for this signature in database
GPG Key ID: 4F2157149161A6C9
1 changed files with 1 additions and 1 deletions

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 {