From 22451d079276732f5a2b0ad5d7389e3606abb766 Mon Sep 17 00:00:00 2001 From: rahuljain-dev Date: Mon, 14 Oct 2024 12:41:54 +0530 Subject: [PATCH] making id and value in sync --- ui/widgets/nuxeo-tag-suggestion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/widgets/nuxeo-tag-suggestion.js b/ui/widgets/nuxeo-tag-suggestion.js index 987d69dd7..b5f7bba54 100644 --- a/ui/widgets/nuxeo-tag-suggestion.js +++ b/ui/widgets/nuxeo-tag-suggestion.js @@ -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) {