Skip to content

Commit

Permalink
Merge pull request #4135 from kazuhitoyokoi/master-fixactionlist
Browse files Browse the repository at this point in the history
Support uppercase in keyword when searching action list
  • Loading branch information
knolleary committed Apr 28, 2023
2 parents 6b205bf + 7b71d8d commit f8701cf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit f8701cf

Please sign in to comment.