Closed vuorinem closed 8 years ago
Also reversing the order in which variables 'rows' and 'cols' have values pushed changes the error:
this.rows.push(i);
this.cols.push(i);
is different to
this.cols.push(i);
this.rows.push(i);
This transfers the null error from one repeat to the other.
thanks for the plunker and steps!
still an issue in latest build https://gist.run/?id=a2250b2a73da073a7a56
Reproduce: http://plnkr.co/edit/3JaZYJbOv5dkO2y5P0vl
Binding a nested repeat.for with two different arrays of size 5 or more, then clearing the array and re-adding items, causes Repeat.items being set to null and throws
Uncaught TypeError: Cannot read property 'length' of null
.Template: