Support uppercase in keyword when searching action list

This commit is contained in:
Kazuhito Yokoi 2023-04-10 01:25:34 +09:00
parent e5d579c1bb
commit 7b71d8d212
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ RED.actionList = (function() {
var searchDiv = $("<div>",{class:"red-ui-search-container"}).appendTo(dialog);
searchInput = $('<input type="text" data-i18n="[placeholder]keyboard.filterActions">').appendTo(searchDiv).searchBox({
change: function() {
filterTerm = $(this).val().trim();
filterTerm = $(this).val().trim().toLowerCase();
filterTerms = filterTerm.split(" ");
searchResults.editableList('filter');
searchResults.find("li.selected").removeClass("selected");