keycloakify 5.9.2 → 5.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -273,7 +273,12 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
|
|
273
273
|
|
274
274
|
<#list object as array_item>
|
275
275
|
|
276
|
-
<#local rec_out =
|
276
|
+
<#local rec_out = "">
|
277
|
+
<#attempt>
|
278
|
+
<#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
|
279
|
+
<#recover>
|
280
|
+
<#return "ABORT: Unable to convert recursive array item in enumerable">
|
281
|
+
</#attempt>
|
277
282
|
|
278
283
|
<#local i = i + 1>
|
279
284
|
|
package/package.json
CHANGED
package/src/bin/build-keycloak-theme/generateFtl/ftl_object_to_js_code_declaring_an_object.ftl
CHANGED
@@ -273,7 +273,12 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
|
|
273
273
|
|
274
274
|
<#list object as array_item>
|
275
275
|
|
276
|
-
<#local rec_out =
|
276
|
+
<#local rec_out = "">
|
277
|
+
<#attempt>
|
278
|
+
<#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
|
279
|
+
<#recover>
|
280
|
+
<#return "ABORT: Unable to convert recursive array item in enumerable">
|
281
|
+
</#attempt>
|
277
282
|
|
278
283
|
<#local i = i + 1>
|
279
284
|
|