Merge pull request from bardius/fix/Issue-130-fix-equality-detection-of-nested-ftl-object-properties

fix: Issue-130: fix equality detection of nested ftl object property …
This commit is contained in:
Joseph Garrone
2022-07-06 11:55:18 +02:00
committed by GitHub

@ -305,7 +305,7 @@ ${ftl_object_to_js_code_declaring_an_object(.data_model, [])?no_esc};
</#function>
<#function are_same_path path searchedPath>
<#if path?size != path?size>
<#if path?size != searchedPath?size>
<#return false>
</#if>