Unicode instead of left and right tags
Greetings,
One of our admins is experiencing a weird issue in the custom content inside the Admin section.
When they open custom content for changing a parameter of the <@component ... />, left and right tags convert into < and />
So, instead of
<@component ... />
they get
<@component .../>
It happens with only tags around components.
If we wrap a component into <div>, divs will be ok, but the component's tags will be switched to < and />
Example:
<div>
<@component id="..." />
</div>
will become:
<div>
<component id="..." />
</div>
Currently it happens with only one admin.
We tested with them multiple times, always the same result.
Do you know why this may happen?
Yulia-Anaplan Oh I see, thanks for the clarification.
In that case, I would recommend wrapping the text in the noautoesc directive as shown below and see if that does the trick.
<#noautoesc><@component id="component-id" param="1" /></#noautoesc>
Hope this helps!