SyntaxFix
Write A Post
Hire A Developer
Questions
i usually use ng-show
<li ng-show="variable.length"></li>
where variable you define for example
<div class="list-group-item" ng-repeat="product in store.products"> <li ng-show="product.length">show something</li> </div>