I'm running into a bit of trouble with getting my text to show up properly in my code. In the HTML, I have
<td>{{cabinetDetails.cabinetType}}</td>
and my data source is set as $scope.cabinetDetails = [{cabinetType: 'panel'}];
Despite this setup, nothing seems to be displaying on my page. I've even attempted adjusting the data source to
$scope.cabinetDetails = [{'cabinetType': 'panel'}];
Can anyone offer any insight or suggestions on what might be causing this issue?