From 13ed300c9ce079e9f5fe0e2d3cb8ecf08e9aa1bb 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)