Fix some selects with static options did not render their options after ddd72fd51a

This commit is contained in:
nathan 2022-07-18 10:41:48 -06:00
parent 7e76020ce1
commit b064b84874

View File

@ -36,6 +36,9 @@ export const Et2StaticSelectMixin = <T extends Constructor<Et2WidgetWithSelect>>
super(...args);
this.static_options = [];
// Trigger the options to get rendered into the DOM
this.requestUpdate("select_options");
}
get select_options() : SelectOption[]