Hi
I have currently a problem with iterating over an array which transformed to a ModifyArrayObserver.
When I use the following code:
<div repeat.for="informationText of informationTexts">
<span>${informationText.language}</span>
</div>
I won’t get anything shown in the frontend even though there will be entries in the array because the length is 0. I am not completely sure what is going on but maybe someone can help me.
In my JS I loop over an array with forEach and filter by languages to have them unique. It looks like this:
When I log this.informationTexts in the attached-method it is an empty ModifyArrayObserver this time. Before there was data in it but the length was 0.