I am trying to use collection-repeat after a collection-repeat.
The code looks like this:
%ion-scroll{ direction: "x", "scrollbar-x" => "false" }
.bar-years
.row.text-center
.ion-item{ "collection-repeat" => "season in previousSeasons1" }
.col.text-center.fancy-font.year-font
{{season.year}}
.season-list
.row.row-center
.ion-item{ "collection-repeat" => "score in previousSeasons1" }
.col.no-padding
%button.button.button-block.five-cent-margin
{{score.fifa}}
The second collection-repeat doesnāt work and I get the following error in the console:
Error: undefined is not an object (evaluating ānode.childNodesā)
Am I doing something wrong here?
I also see a collection-repeat-after-container in the compiled code. Does that have to do with anything?