diff --git a/api/js/etemplate/Et2Tree/Et2TreeDropdown.ts b/api/js/etemplate/Et2Tree/Et2TreeDropdown.ts index 6ce02535ff..48ec24637f 100644 --- a/api/js/etemplate/Et2Tree/Et2TreeDropdown.ts +++ b/api/js/etemplate/Et2Tree/Et2TreeDropdown.ts @@ -444,7 +444,7 @@ export class Et2TreeDropdown extends Et2WidgetWithSelectMixin(LitElement) return html`${map(value, (value, index) => { // Deal with value that is not in options - const option = this.optionSearch(value, this.select_options, 'item'); + const option = this.optionSearch(value, this.select_options, 'value', 'item'); return option ? this.tagTemplate(option) : nothing; })}`; }