From 48ed89b76fcab1a8b1f88f3df53f68a931132875 Mon Sep 17 00:00:00 2001 From: nathan Date: Fri, 16 Feb 2024 09:59:04 -0700 Subject: [PATCH] Update from changes in cce0ab57fa6f94010ef0ac5d22a74344fb29abe5 --- api/js/etemplate/Et2Tree/Et2TreeDropdown.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; })}`; }