JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<div ng-app="myApp" ng-controller="myCtrl">
    <ul>
        <li ng-repeat="detail in details | filter:{shortDescription: ''}">
            <p>{{detail.shortDescription}}</p>
        </li>
    </ul>
</div>

JavaScript

function myCtrl($scope) {
    $scope.details = [{
        name: 'Bill',
        shortDescription: null
    }, {
        name: 'Sally',
        shortDescription: 'A girl'
    }];
}

angular.module("myApp",[]).controller("myCtrl", myCtrl);