Display items in ng-repeat only when the value of a certain key is not empty.
Here is the code snippet:
<a class="item" href="#" ng-repeat="e in events | orderBy:'match_time'" ng-if="e.match_timer !== NaN && e.match_status !== 'FT'">
The structure of e.match_timer is as follows:
{
match_timer: ""
}