Seems like it'd be pretty straight forward but I am not able to get my text to display
In my HTML I have <td>{{cabinetDetails.cabinetType}}</td> and my data source is $scope.cabinetDetails = [{cabinetType: 'panel'}];
Nothing is displaying in my HTML. I've also tried: $scope.cabinetDetails = [{'cabinetType': 'panel'}];
Any ideas?