Here is the structure of an array I am working with:
0: {ID: null,
name: "test",
city: "Austin",
UserColors: [{color: "blue"},{hobby:"beach"} ... ]}
}...
I am currently attempting to ng-repeat over this initial array in my code. However, when I try to iterate through the list, nothing is displayed. Below is the relevant HTML and AngularJS snippet:
<tr ng-repeat="c in vm.people">
<td>{{c.name}}</td>
<td>{{c.city}}</td>
<td ng-repeat="uc in c.UserColors">
<td>{{uc.color}}</td>
</td>
</tr>
I am unable to pinpoint the issue, so any assistance you can provide would be greatly appreciated. Thank you in advance for your help.