neos-development-collection icon indicating copy to clipboard operation
neos-development-collection copied to clipboard

Bug Afx: Allow Eel to contain strings with unbalanced braces

Open mhsdesign opened this issue 3 years ago • 0 comments

this for example wont work:

value = afx`
{"{"}
<Neos.Fusion:Loop items={props.properties}>
    {itemKey}: {item}
</Neos.Fusion:Loop>
{"}"}
`

and will transform to:

value = ${"{"}
<Neos.Fusion:Loop items={props.properties}>
    {itemKey}: {item}
</Neos.Fusion:Loop>
{"}"}

which makes the fusionparser upset and causes a non understandable exception.

--- i fixed that already locally out of fun once ... let me find it ^^

mhsdesign avatar Sep 25 '22 15:09 mhsdesign