HTML Duplication When Injecting Component in a Form Container
Hello,
In a form container component I would like to inject another component something like this
<sly data-sly-resource="${'component' @ resourceType='my/component/path'}"></sly>
Changes to the injected component's properties lead to HTML duplication. The duplication seems to be caused by a data-sly-repeat loop
<sly data-sly-repeat.paragraph="${grid.paragraphs}"
data-sly-resource="${paragraph.path @ resourceType=paragraph.resourceType, decorationTagName='div', cssClassName=paragraph.cssClass}"></sly>
<div>
The question is how to inject component in a form container to avoid component duplication
