Currently, I am trying to assess the value of a property within an object and comparing it with string data.
<div ng-if="results.dataType === 'textTable'">
The content is meant for display in a table.
</div>
At present, all divs are displaying the text within the body when only two of them should show it.
I'm questioning whether there is an issue with my ng-if statement and the string comparison being used.