From b064b8487432603fe126a50bfb0a15e784c60043 Mon Sep 17 00:00:00 2001 From: nathan Date: Mon, 18 Jul 2022 10:41:48 -0600 Subject: [PATCH] Fix some selects with static options did not render their options after ddd72fd51a2db20ebafc4100a5b1ec274f1b93e1 --- api/js/etemplate/Et2Select/StaticOptions.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/api/js/etemplate/Et2Select/StaticOptions.ts b/api/js/etemplate/Et2Select/StaticOptions.ts index 5a02adfa8a..907f71dfb9 100644 --- a/api/js/etemplate/Et2Select/StaticOptions.ts +++ b/api/js/etemplate/Et2Select/StaticOptions.ts @@ -36,6 +36,9 @@ export const Et2StaticSelectMixin = > super(...args); this.static_options = []; + + // Trigger the options to get rendered into the DOM + this.requestUpdate("select_options"); } get select_options() : SelectOption[]