Skip to content

Commit

Permalink
making id and value in sync
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Oct 14, 2024
1 parent 559eed6 commit 22451d0
Showing 1 changed file with 1 addition and 1 deletion.
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) {
return { id: term, displayLabel: term.toLowerCase(), newTag: true };
return { id: term.toLowerCase(), displayLabel: term.toLowerCase(), newTag: true };
}

_addedTagHandler(entry) {
Expand Down

0 comments on commit 22451d0

Please sign in to comment.