Update from changes in cce0ab57fa

This commit is contained in:
nathan 2024-02-16 09:59:04 -07:00
parent cce0ab57fa
commit 48ed89b76f

View File

@ -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;
})}`;
}