Merge pull request #3444 from node-red/keyboard-filter-case

Handle mixed-cased filter terms in keyboard shortcut dialog
This commit is contained in:
Nick O'Leary 2022-02-14 23:18:16 +00:00 committed by GitHub
commit 4573b65639
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {