I'm having an issue using the ng-show directive within an ng-repeat block.
The boolean value does not seem to be getting passed to ng-show correctly...
To show what I mean, here is a screenshot of an example I made in JSFiddle:

Here is some example markup:
<table ng-controller="ActressController" class="table table-bordered table-striped">
    <tr ng-repeat="actress in actressList">
        <td>
            <span class="actress-name">{{ actress.name }}</span>
            <h4 ng-show="{ actress.name == 'Scarlett' }">Was in Avengers! <span class="note">(should only appear if Scarlett)</span></h4>
            <h2>{{ actress.name == 'Scarlett'}} <span class="note"><-- this statement is correct</span></h2>
        </td>
    </tr>
</table>
Here is an example controller:
function ActressController($scope) {
    $scope.actressList = [
        {
            name: "Angelina"
        }, {
            name: "Scarlett"
        }, {
            name: 'Mila'
        }, {
            name: 'Megan'
        }
    ]        
}
Any ideas on what I may be doing wrong?
 
     
     
    
s nots. [Try this](http://jsfiddle.net/6631r5y3/). 
– NetworkMeister Apr 22 '17 at 10:45