From 1230a4eb6eb2e5832d7c2e32eee2966a4ceb77ff Mon Sep 17 00:00:00 2001 From: nathangray Date: Wed, 5 Aug 2020 10:36:32 -0600 Subject: [PATCH] * Etemplate: Fix entry widget had wrong ID, so was missing value Typescript conversion error --- api/js/etemplate/et2_widget_entry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/js/etemplate/et2_widget_entry.ts b/api/js/etemplate/et2_widget_entry.ts index 4883e889a2..1f247b40b4 100644 --- a/api/js/etemplate/et2_widget_entry.ts +++ b/api/js/etemplate/et2_widget_entry.ts @@ -78,7 +78,7 @@ class et2_entry extends et2_valueWidget public static readonly legacyOptions : string[] = ["field","compare","alternate_fields"]; - static readonly prefix: '~'; + public static readonly prefix = '~'; protected widget = null; constructor(_parent, _attrs? : WidgetConfig, _child? : object)