fix: Issue-130: fix equality detection of nested ftl object property paths

This commit is contained in:
BARDIS George 2022-07-06 11:38:47 +03:00
parent 51f3d06752
commit c7349c2556

View File

@ -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>