SearchMixin: Use parent set select_otions, no need to duplicate

This commit is contained in:
nathan 2022-12-06 11:59:51 -07:00
parent daa999d586
commit fb40aedf89

View File

@ -501,8 +501,7 @@ export const Et2WithSearchMixin = <T extends Constructor<LitElement>>(superclass
set select_options(options : SelectOption[])
{
this.__select_options = options;
this.requestUpdate('select_options');
super.select_options = options;
}
get value()