Skip to content

Commit

Permalink
Review comments incorporated
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Oct 15, 2024
1 parent 62a5df3 commit 31f9897
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/widgets/nuxeo-selectivity.js
Original file line number Diff line number Diff line change
Expand Up @@ -2435,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.toLowerCase())) {
} 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
2 changes: 1 addition & 1 deletion ui/widgets/nuxeo-tag-suggestion.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ import { escapeHTML } from './nuxeo-selectivity.js';
}

_newEntryFormatter(term) {
term = term.toLowerCase();
term = term?.toLowerCase();
return { id: term, displayLabel: term, newTag: true };
}

Expand Down

0 comments on commit 31f9897

Please sign in to comment.