Skip to content

Commit

Permalink
WEBUI-1504: Tags fix mixed case entry fix 3
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Oct 14, 2024
1 parent c4ed9db commit 559eed6
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions ui/widgets/nuxeo-selectivity.js
Original file line number Diff line number Diff line change
Expand Up @@ -2422,9 +2422,6 @@ typedArrayTags[weakMapTag] = false;
* term - The search term for which the results are displayed.
*/
showResults(results, options) {
if(options && options.term){
options.term = options.term.toLowerCase();
}
const searchText = options && options.term && options.term.trim();
if (options.add) {
removeElement(this.$('.selectivity-loading'));
Expand All @@ -2438,7 +2435,7 @@ typedArrayTags[weakMapTag] = false;
let resultsHtml = isFilteredResultNotEmpty ? this.renderItems(filteredResults) : '';
if (options.hasMore) {
resultsHtml += this.selectivity.template('loadMore');
} else if (value && Array.isArray(value) && value.includes(options.term)) {
} else if (value && Array.isArray(value) && value.includes(options.term.toLowerCase())) {
resultsHtml = this.selectivity.template('tagExists');
} else if (!resultsHtml && !options.add) {
resultsHtml = this.selectivity.template('noResults', { term: options.term });
Expand Down

0 comments on commit 559eed6

Please sign in to comment.