From fb40aedf890c31f629a872e34d43b76cecd9d82c Mon Sep 17 00:00:00 2001 From: nathan Date: Tue, 6 Dec 2022 11:59:51 -0700 Subject: [PATCH] SearchMixin: Use parent set select_otions, no need to duplicate --- api/js/etemplate/Et2Select/SearchMixin.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/api/js/etemplate/Et2Select/SearchMixin.ts b/api/js/etemplate/Et2Select/SearchMixin.ts index 7fefef616f..eabf1c12bb 100644 --- a/api/js/etemplate/Et2Select/SearchMixin.ts +++ b/api/js/etemplate/Et2Select/SearchMixin.ts @@ -501,8 +501,7 @@ export const Et2WithSearchMixin = >(superclass set select_options(options : SelectOption[]) { - this.__select_options = options; - this.requestUpdate('select_options'); + super.select_options = options; } get value()