When working with two ng-repeat elements, I encountered an issue where I only want to display data when the text value of both array elements match. I attempted to use ng-show, but it does not stop the condition when the values match.
<div ng-show="activity.id == actor"> found
<span ng-repeat="text in activity.text">
\{{text}}
</span>
</div>