I'm currently developing a system where I need to nest two ng-repeat statements to iterate through a 2D array. I managed to achieve this successfully using version 1.1.1, as shown here:
However, when I tried the same code with Angular version 1.2.1, it stopped working and threw an error:
Error:
Error: [ngRepeat:dupes] Duplicates in a repeater are not allowed. Use 'track by' expression to specify unique keys. Repeater: x in value, Duplicate key: number:0
My question is, how can I replicate the functionality of version 1.1.1 with newer Angular versions?