keycloakify 6.3.4 → 6.3.5
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.
@@ -272,6 +272,11 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
|
|
272
272
|
|
273
273
|
<#list object as array_item>
|
274
274
|
|
275
|
+
<#if !array_item??>
|
276
|
+
<#local out_seq += ["null,"]>
|
277
|
+
<#continue>
|
278
|
+
</#if>
|
279
|
+
|
275
280
|
<#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
|
276
281
|
|
277
282
|
<#local i = i + 1>
|
package/package.json
CHANGED
@@ -272,6 +272,11 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
|
|
272
272
|
|
273
273
|
<#list object as array_item>
|
274
274
|
|
275
|
+
<#if !array_item??>
|
276
|
+
<#local out_seq += ["null,"]>
|
277
|
+
<#continue>
|
278
|
+
</#if>
|
279
|
+
|
275
280
|
<#local rec_out = ftl_object_to_js_code_declaring_an_object(array_item, path + [ i ])>
|
276
281
|
|
277
282
|
<#local i = i + 1>
|